dropped in the dos stuff
[smouse] / Makefile
1 src = $(wildcard src/*.c) $(wildcard src/unix/*.c)
2 obj = $(src:.c=.o)
3 bin = smouse
4
5 CFLAGS = -pedantic -Wall -g -Isrc
6 LDFLAGS = -lGL -lGLU -lX11 -lm
7
8 $(bin): $(obj)
9         $(CC) -o $@ $(obj) $(LDFLAGS)
10
11 .PHONY: clean
12 clean:
13         rm -f $(obj) $(bin)