voxfract

view 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 source
1 src = $(wildcard src/*.c)
2 obj = $(src:.c=.o)
3 bin = voxfract
5 CFLAGS = -pedantic -Wall -g
6 LDFLAGS = -lGL -lGLU -lglut -lmetasurf -lm
8 $(bin): $(obj)
9 $(CC) -o $@ $(obj) $(LDFLAGS)
11 .PHONY: clean
12 clean:
13 rm -f $(obj) $(bin)