summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGentoo <installgentoo@endianness.com>2021-01-19 15:29:48 +1100
committerGentoo <installgentoo@endianness.com>2021-01-19 15:29:48 +1100
commit26eba3955b1ae09d89d12c6b11da66459076a5c2 (patch)
treea23043804cdad97c25fa2992a8852d0e7247ee1b /Makefile
downloadbestIndexing-26eba3955b1ae09d89d12c6b11da66459076a5c2.tar.gz
bestIndexing-26eba3955b1ae09d89d12c6b11da66459076a5c2.tar.bz2
bestIndexing-26eba3955b1ae09d89d12c6b11da66459076a5c2.zip
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ade8f43
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+CC=gcc
+CFLAGS=-O4 -march=native -pipe
+
+OBJ = main.o
+
+%.o: %.c $(DEPS)
+ $(CC) -c -o $@ $< $(CFLAGS)
+
+out: $(OBJ)
+ $(CC) -o $@ $^ $(CFLAGS)
+clean:
+ rm out main.o