a
This commit is contained in:
24
libdraw/Makefile
Normal file
24
libdraw/Makefile
Normal file
@@ -0,0 +1,24 @@
|
||||
LIB=libdraw.a
|
||||
CC=gcc
|
||||
CFLAGS=-I../include -I. -c -ggdb -D_THREAD_SAFE -pthread
|
||||
O=o
|
||||
|
||||
OFILES=\
|
||||
alloc.$O\
|
||||
arith.$O\
|
||||
bytesperline.$O\
|
||||
chan.$O\
|
||||
defont.$O\
|
||||
drawrepl.$O\
|
||||
icossin.$O\
|
||||
icossin2.$O\
|
||||
rectclip.$O\
|
||||
rgb.$O
|
||||
|
||||
$(LIB): $(OFILES)
|
||||
ar r $(LIB) $(OFILES)
|
||||
ranlib $(LIB)
|
||||
|
||||
%.$O: %.c
|
||||
$(CC) $(CFLAGS) $*.c
|
||||
|
Reference in New Issue
Block a user