imtk
view Makefile @ 10:467a520f5c00
implemented the listbox correctly, no scrollbars or explicit sizing yet
author | John Tsiombikas <nuclear@siggraph.org> |
---|---|
date | Sun, 17 Apr 2011 18:17:55 +0300 |
parents | b04d49e4599c |
children | df2bc9406561 |
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 -lGLU -lglut
13 endif
15 $(bin): $(obj)
16 $(CC) -o $@ $(obj) $(LDFLAGS)
18 .PHONY: clean
19 clean:
20 rm -f $(obj) $(bin)