mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 09:56:50 +01:00
27 lines
400 B
Makefile
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
|