18 lines
422 B
Makefile
18 lines
422 B
Makefile
all: graph_test entity_test rect2i
|
|
|
|
CFLAGS = -I../src/flecs/distr
|
|
CXXFLAGS = -I../src/flecs/distr -I../src/modules/stream/ui -I../src/godot -I../src/godot/platform/x11
|
|
|
|
graph_test: graph_module.o flecs.o
|
|
$(CXX) -o $@ graph_module.o flecs.o
|
|
|
|
entity_test: entity_test.o flecs.o
|
|
$(CXX) -o $@ entity_test.o flecs.o
|
|
|
|
flecs.o: ../src/flecs/distr/flecs.c
|
|
$(CC) -o $@ -c $<
|
|
rect2i: rect2i.o
|
|
$(CXX) -o $@ rect2i.o
|
|
|
|
.PHONY: all
|