diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -23,7 +23,12 @@ DEP := $(OBJ:.o=.d) all: $(PROG) $(PROG): $(OBJ) clean: - $(RM) $(OBJ) $(DEP) $(PROG) + $(RM) $(OBJ) $(DEP) $(PROG) $(CLEAN) + +loadgl.o gltest.o: loadgl.h +loadgl.c loadgl.h: loadgl.%: loadgl.m4 loadgl.%.in + m4 $^ >$@ +CLEAN += loadgl.c loadgl.h include $(EPRINTF_PATH)/module.mk deplinks: $(EPRINTF_FILES) |