summarylogtreecommitdiffstats
path: root/makefile
diff options
context:
space:
mode:
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)
+