test_texcomp

view Makefile @ 2:31d30a9c4491

more compressed format strings
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 09 Jan 2018 08:45:44 +0200
parents
children
line source
1 obj = main.o
2 bin = test
4 CFLAGS = -pedantic -Wall -g
5 LDFLAGS = -lGL -lglut
7 $(bin): $(obj)
8 $(CC) -o $@ $(obj) $(LDFLAGS)
10 .PHONY: clean
11 clean:
12 rm -f $(obj) $(bin)