aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 737ef79..8681e8b 100644
--- a/Makefile
+++ b/Makefile
@@ -14,9 +14,13 @@ CFLAGS += $(shell $(PKG_CONFIG) --cflags $(LIBS)) -std=c11 -MMD -MP
LDFLAGS += -Wl,--as-needed
LDLIBS += $(shell $(PKG_CONFIG) --libs $(LIBS)) -lm
-OBJ := gltest.o loadgl.o eprintf.o glprog.o assets.o assets_data.o
+OBJ := gltest.o loadgl.o eprintf.o glprog.o
all: $(PROG)
+
+include assets.mk
+include $(EPRINTF_PATH)/module.mk
+
$(PROG): $(OBJ)
gltest.o: assets.h
loadgl.o gltest.o glprog.o: loadgl.h
@@ -24,9 +28,6 @@ loadgl.c loadgl.h: loadgl.%: loadgl.m4 loadgl.%.in
m4 $^ >$@
CLEAN += loadgl.c loadgl.h
-include assets.mk
-
-include $(EPRINTF_PATH)/module.mk
deplinks: $(EPRINTF_FILES)
DEP := $(OBJ:.o=.d)