21 lines · plain
1C_SOURCES := main.c2 3ifeq "$(OS)" ""4 OS = $(shell uname -s)5endif6 7ifeq "$(OS)" "Darwin"8 LD_EXTRAS = -Xlinker -dead_strip9else10 CFLAGS_EXTRAS += -fdata-sections -ffunction-sections11 ifeq "$(OS)" "Windows_NT"12 LD_EXTRAS = -Xlinker /OPT:REF13 else14 LD_EXTRAS = -Wl,--gc-sections15 endif16endif17 18MAKE_DSYM := NO19 20include Makefile.rules21