1C_SOURCES := main.c 2 3ifeq "$(OS)" "" 4 OS = $(shell uname -s) 5endif 6 7ifeq "$(OS)" "Darwin" 8 LD_EXTRAS = -Xlinker -dead_strip 9else 10 CFLAGS_EXTRAS += -fdata-sections -ffunction-sections 11 ifeq "$(OS)" "Windows_NT" 12 LD_EXTRAS = -Xlinker /OPT:REF 13 else 14 LD_EXTRAS = -Wl,--gc-sections 15 endif 16endif 17 18MAKE_DSYM := NO 19 20include Makefile.rules 21