commit e057781a48323ecfd8048f98eab6de5bf2a17e7a parent 0f5e747cb622319a583db1244cd9d15e9f3f496c Author: Michael Savage <mikejsavage@gmail.com> Date: Sat Dec 3 14:58:57 +0200 Remove visitors in make clean/actually build visitors from cleaned repo Diffstat:
Makefile | | | 3 | ++- |
rules.mk | | | 1 | + |
diff --git a/Makefile b/Makefile @@ -1,8 +1,9 @@ BINS := medfall pp sound srv launcher/launcher MODULES := bsp.so btt.so hm.so sm.so STBS := truetype image image_write perlin +VISITORS := visitors/linear_algebra.h -all: $(BINS) $(MODULES) test_lockfree +all: $(VISITORS) $(BINS) $(MODULES) test_lockfree # Binary dependencies medfall: main.o gl.o log.o memory_arena.o glad.o diff --git a/rules.mk b/rules.mk @@ -37,6 +37,7 @@ visitors/%.h: clean: rm -f $(BINS) $(MODULES) *.o *.so $(STB_CCS) test_lockfree + rm -rf visitors rm -rf .deps -include .deps/*.d