JacksEscape/Makefile

29 lines
666 B
Makefile
Raw Normal View History

2024-03-01 14:38:18 +08:00
.SILENT:
include Makefile.flags
output := JacksEscape
objects = $(patsubst %.c,%.o,$(shell find . -name "*.c")) $(patsubst %.cpp,%.o,$(shell find . -name "*.cpp"))
objects_fasm = $(patsubst %.S,%.o,$(shell find . -name "*.S"))
objects_test = $(patsubst %.c,%.o,$(shell find . -name "test_*.c")) $(patsubst %.cpp,%.o,$(shell find . -name "test_*.cpp"))
objects := $(filter-out $(objects_test),$(objects))
all: $(output)
$(output): $(objects) $(objects_fasm)
$(LD) -o $@ $(LDFLAGS) $(objects) $(objects_fasm) $(LDLIBS)
clean:
echo " -RM $(output) $(objects)"
-$(RM) -f $(output) $(objects) $(objects_fasm)
.PHONY: all clean install upload