1234567891011121314151617181920212223242526272829303132333435 |
- special_executables = static pie
- c_executables = $(filter-out $(special_executables),$(patsubst %.c,%,$(wildcard *.c)))
- cxx_executables = $(patsubst %.cpp,%,$(wildcard *.cpp))
- manifests = $(patsubst %.template,%,$(wildcard *.manifest.template)) manifest
- exec_target = $(special_executables) $(c_executables) $(cxx_executables) ls.manifest
- target = $(exec_target) $(manifests)
- level = ../
- include ../Makefile
- ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)
- $(c_executables): %: %.c
- @echo [ $@ ]
- @$(CC) $(CFLAGS) $(if $(findstring .libos,$@),$(CFLAGS-libos),) -o $@ $< \
- $(shell echo $@ | sed 's/^[^\.]*//g' | sed 's/\./ -l/g')
- $(cxx_executables): %: %.cpp
- @echo [ $@ ]
- @$(CC) $(CFLAGS) $(if $(findstring .libos,$@),$(CFLAGS-libos),) -o $@ $< \
- $(shell echo $@ | sed 's/^[^\.]*//g' | sed 's/\./ -l/g')
- static: %: %.c
- @echo [ $@ ]
- @$(CC) $(CFLAGS) -o $@ -static $< \
- $(shell echo $@ | sed 's/^[^\.]*//g' | sed 's/\./ -l/g')
- pie: %: %.c
- @echo [ $@ ]
- @$(CC) $(CFLAGS) -fPIC --pie -o $@ $< \
- $(shell echo $@ | sed 's/^[^\.]*//g' | sed 's/\./ -l/g')
- else
- .IGNORE: $(special_executables) $(c_executables) $(cxx_executables)
- $(special_executables) $(c_executables) $(cxx_executables):
- endif
|