summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGentoo <installgentoo@endianness.com>2021-03-27 10:10:11 +1100
committerGentoo <installgentoo@endianness.com>2021-03-27 10:10:11 +1100
commit8541a54db15a1ee5086f01bf222a4dde70892a3b (patch)
tree2d77d36c29e61b7c349cfe5025b4163db2c32eb9 /Makefile
downloadany-master.tar.gz
any-master.tar.bz2
any-master.zip
initial commitHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..154d954
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+CC=gcc
+CFLAGS=-O3 -march=native -pipe
+
+OBJ = main.o
+
+%.o: %.c $(DEPS)
+ $(CC) -c -o $@ $< $(CFLAGS)
+
+out: $(OBJ)
+ $(CC) -o $@ $^ $(CFLAGS)