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

OBJ = main.o

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

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

clean:
	rm $(OBJ)
	rm decode