CC=gcc CFLAGS=-O3 -march=native -pipe OBJ = main.o %.o: %.c $(DEPS) $(CC) -c -o $@ $< $(CFLAGS) out: $(OBJ) $(CC) -o $@ $^ $(CFLAGS)