voxfract
diff Makefile @ 0:8171de5a000b
initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 14 Jun 2017 18:03:57 +0300 |
parents | |
children | d0297d001505 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/Makefile Wed Jun 14 18:03:57 2017 +0300 1.3 @@ -0,0 +1,13 @@ 1.4 +src = $(wildcard src/*.c) 1.5 +obj = $(src:.c=.o) 1.6 +bin = voxfract 1.7 + 1.8 +CFLAGS = -pedantic -Wall -g 1.9 +LDFLAGS = -lGL -lGLU -lglut -lmetasurf -lm 1.10 + 1.11 +$(bin): $(obj) 1.12 + $(CC) -o $@ $(obj) $(LDFLAGS) 1.13 + 1.14 +.PHONY: clean 1.15 +clean: 1.16 + rm -f $(obj) $(bin)