First commit. v1.0

This commit is contained in:
2016-02-19 18:11:25 +01:00
commit 0b959e9482
2 changed files with 153 additions and 0 deletions

7
makefile Executable file
View File

@@ -0,0 +1,7 @@
TARGET=respak
all:
gcc respak.c -o $(TARGET)
clean:
rm -rf ./$(TARGET)