summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 70ed6f02fd0da46ce6b902d9b7dd599ff9fd8de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
CC=gcc
#DEBUG=-g
CFLAGS=-O3 -march=native -pipe $(DEBUG)

OBJ = main.o

%.o: %.c $(DEPS)
	$(CC) -c -o $@ $< $(CFLAGS)

out: $(OBJ)
	$(CC) -o $@ $^ $(CFLAGS)

clean:
	rm out main.o questions.tex answers.tex