8 lines
167 B
Makefile
8 lines
167 B
Makefile
DYLIB_NAME := Two
|
|
DYLIB_C_SOURCES := Two.c TwoConstant.c
|
|
DYLIB_ONLY := YES
|
|
|
|
include Makefile.rules
|
|
|
|
TwoConstant.o: TwoConstant.c
|
|
$(CC) $(CFLAGS_NO_DEBUG) -c $< -o $@
|