view mmio/Makefile @ 14:6218f9885552

Clean up the Makefile
author darius
date Thu, 23 Apr 1998 07:21:28 +0000
parents d5cb2cfc8eca
children
line wrap: on
line source

# MMIO Library Makefile for Linux
# Divine Entertainment Game Programming Pack
#

##########################
## User settable macros ##
##########################

Compiler          = gcc
Librarian         = ar
RanLib		  = ranlib
Compiler_Options  = -O2 -I. -I../mikmod -I../include -g
Lib_file          = ../lib/libmmio.a

Object_files      = mmio.o mmalloc.o mmerror.o

####################
## Makefile rules ##
####################

$(Lib_file): $(Object_files)
	$(Librarian) r $(Lib_file) $(Object_files)
	$(RanLib) $(Lib_file)

%.o: %.c
	$(CC) -c $(Compiler_Options) $<

clean:
	rm *.o
	rm $(Lib_file)