pandemonium_engine_minimal/platform/frt/porting/Makefile
2023-12-14 21:54:22 +01:00

27 lines
400 B
Makefile

# Makefile
VPATH = . .. ../import ../dl
CXXFLAGS = -I.. -DFRT_TEST -std=c++98 -Wall -ggdb
LDFLAGS = -ggdb
OBJS =
LIBS =
include Local.mk
test.bin: $(OBJS)
$(CXX) $(LDFLAGS) -o test.bin $(OBJS) $(LIBS)
run: test.bin
./test.bin
local:
git update-index --assume-unchanged Local.mk
restore:
git checkout Local.mk
git update-index --no-assume-unchanged Local.mk
clean:
rm -f a.out *.bin *.o