diff options
author | Pavel Vymetálek <pavel@vym.cz> | 2019-02-07 17:05:56 +0100 |
---|---|---|
committer | Pavel Vymetálek <pavel@vym.cz> | 2019-02-07 17:05:56 +0100 |
commit | aee21c54320a5e85153314e8f4efdb7bea67e762 (patch) | |
tree | 0d717b1336035249a216203ef99271cf82728b8c /Makefile | |
download | sercp-pc-aee21c54320a5e85153314e8f4efdb7bea67e762.tar.gz |
První commit: vychází se z programu taptoser
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
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 |