imtk

view Makefile @ 11:eae09a1dca1d

checkbox is active over the whole length of the label too
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 16 Apr 2011 10:27:59 +0300
parents
children 1b27a69603ac
line source
1 src = $(wildcard *.c src/*.c)
2 obj = $(src:.c=.o)
3 bin = test
5 CC = gcc
6 CFLAGS = -pedantic -Wall -g -Isrc
7 LDFLAGS = $(libgl)
9 ifeq ($(shell uname -s), Darwin)
10 libgl = -framework OpenGL -framework GLUT
11 else
12 libgl = -lGL -lglut
13 endif
15 $(bin): $(obj)
16 $(CC) -o $@ $(obj) $(LDFLAGS)
18 .PHONY: clean
19 clean:
20 rm -f $(obj) $(bin)