summarylogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
authorEvan M Jones2019-05-14 01:59:56 +0000
committerEvan M Jones2019-05-14 01:59:56 +0000
commit264520f5ddf0605f0f57ee3bce77f43c04f0d8b1 (patch)
treeabf3979cfb9a3efdd86c4114fa92782b5fbe3640 /makefile
downloadaur-264520f5ddf0605f0f57ee3bce77f43c04f0d8b1.tar.gz
Feat(*): Project init, AUR release.
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 000000000000..5bd27b4b81aa
--- /dev/null
+++ b/makefile
@@ -0,0 +1,11 @@
+CC=gcc
+OPTS=-Wall -Wextra -pedantic -std=gnu89 -Ofast
+OUT=dlof
+IN=main.c
+
+all: $(IN)
+ $(CC) $(OPTS) $(IN) -o $(OUT)
+
+clean:
+ rm $(OUT)
+