aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPavel Vymetálek <pavel@vym.cz>2019-02-07 17:05:56 +0100
committerPavel Vymetálek <pavel@vym.cz>2019-02-07 17:05:56 +0100
commitaee21c54320a5e85153314e8f4efdb7bea67e762 (patch)
tree0d717b1336035249a216203ef99271cf82728b8c /Makefile
downloadsercp-pc-aee21c54320a5e85153314e8f4efdb7bea67e762.tar.gz
První commit: vychází se z programu taptoser
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..ffe0501
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+PROJECT=sercp
+all:
+ gcc $(PROJECT).c -o $(PROJECT) -Wall -pedantic -MP -MD -std=gnu11 -Werror=format-security -O2
+debug:
+ gcc $(PROJECT).c -o $(PROJECT) -Wall -pedantic -MP -MD -std=gnu11 -Werror=format-security -g -O0
+
+clean:
+ rm -f $(PROJECT) $(PROJECT).d $(PROJECT).o