Add Makefile. - irc - Unnamed repository; edit this file 'description' to name … | |
git clone git://vernunftzentrum.de/irc.git | |
Log | |
Files | |
Refs | |
README | |
--- | |
commit fb2a9d3e0ef321180de4fb0b65741ae571cce9ef | |
parent 420e494643d4ae10c509d67ddffc7bae069c86eb | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sun, 24 Apr 2016 15:05:04 +0200 | |
Add Makefile. | |
Diffstat: | |
Makefile | 6 ++++++ | |
1 file changed, 6 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -0,0 +1,6 @@ | |
+build: clean | |
+ cc irc.c -o irc -lncurses -Wall -std=c99 -Os | |
+ strip irc | |
+ | |
+clean: | |
+ rm -f irc |