medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit fbe948572d1759ec18a88f65e452f8ba390f7dda
parent 4218d8849222eda56864474fab18bafa29eee640
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat Sep 19 19:35:48 +0100

Some Makefile cleanup

Diffstat:
Makefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ all: medfall bsp.so hm.so pp btt.so -OBJS = main.o gl.o memory_arena.o -BSPOBJS = bsp.o bsp_renderer.o gl.o memory_arena.o immediate.o +MAINOBJS = main.o gl.o memory_arena.o +BSPOBJS = bsp.o bsp_renderer.o memory_arena.o immediate.o HMOBJS = hm.o heightmap.o terrain_manager.o memory_arena.o work_queue.o immediate.o stb_truetype.o stb_image.o stb_perlin.o PPOBJS = pp.o stb_image.o stb_image_write.o @@ -20,7 +20,7 @@ endif picky: WARNINGS += -Wunused-parameter -Wunused-function -Wwrite-strings -Wconversion picky: all -medfall: $(OBJS) +medfall: $(MAINOBJS) $(CXX) $^ $(LDFLAGS) -o $@ hm.so: $(HMOBJS)