Mercurial > ~darius > hgwebdir.cgi > mikmod
view mmio/Makefile @ 20:0e9afd6bdaf0
Don't know why this file was here :)
author | darius |
---|---|
date | Fri, 24 Apr 1998 01:24:55 +0000 |
parents | 6218f9885552 |
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)