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

ARCH=-DAMD64=1

OBJ = main.o

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

rightrotate: $(OBJ)
	$(CC) -o $@ $^ $(CFLAGS) $(ARCH) && ./rightrotate

clean:
	rm $(OBJ)
	rm rightrotate