brintos

brintos / llvm-project-archived public Read only

0
0
Text · 402 B · fce43a3 Raw
16 lines · plain
1LD_EXTRAS = -L. -lto-be-removed -lpresent2C_SOURCES = main.c3 4include Makefile.rules5 6a.out: libto-be-removed libpresent7 8libto-be-removed: libpresent9	"$(MAKE)" -f $(MAKEFILE_RULES) \10	  DYLIB_ONLY=YES DYLIB_C_SOURCES=to-be-removed.c DYLIB_NAME=to-be-removed \11	  LD_EXTRAS="-L. -lpresent"12 13libpresent:14	"$(MAKE)" -f $(MAKEFILE_RULES) \15	  DYLIB_ONLY=YES DYLIB_C_SOURCES=present.c DYLIB_NAME=present 16