You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
364 B

C_SOURCES := main.c
ifeq "$(OS)" ""
OS = $(shell uname -s)
endif
ifeq "$(OS)" "Darwin"
LD_EXTRAS = -Xlinker -dead_strip
else
CFLAGS_EXTRAS += -fdata-sections -ffunction-sections
ifeq "$(OS)" "Windows_NT"
LD_EXTRAS = -Xlinker /OPT:REF
else
LD_EXTRAS = -Wl,--gc-sections
endif
endif
MAKE_DSYM := NO
include Makefile.rules