diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f068311 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ + +GCC=gcc -g + +.PHONY default: build + +build: util run read main + $(GCC) main.o read.o run.o util.o -o chicken + +main: main.c + $(GCC) -c main.c + +read: read.c read.h + $(GCC) -c read.c + +run: run.c run.h + $(GCC) -c run.c + +util: util.c util.h + $(GCC) -c util.c diff --git a/chicken b/chicken new file mode 100755 index 0000000..3bb43d9 Binary files /dev/null and b/chicken differ diff --git a/main.c b/main.c new file mode 100644 index 0000000..d03bda6 --- /dev/null +++ b/main.c @@ -0,0 +1,6 @@ + + + +int main(int argc, char** argv) { + return 0; +} diff --git a/main.o b/main.o new file mode 100644 index 0000000..62ca41c Binary files /dev/null and b/main.o differ diff --git a/read.c b/read.c new file mode 100644 index 0000000..e69de29 diff --git a/read.h b/read.h new file mode 100644 index 0000000..e69de29 diff --git a/read.o b/read.o new file mode 100644 index 0000000..4ce6e2b Binary files /dev/null and b/read.o differ diff --git a/run.c b/run.c new file mode 100644 index 0000000..e69de29 diff --git a/run.h b/run.h new file mode 100644 index 0000000..e69de29 diff --git a/run.o b/run.o new file mode 100644 index 0000000..5bbc3c6 Binary files /dev/null and b/run.o differ diff --git a/util.c b/util.c new file mode 100644 index 0000000..e69de29 diff --git a/util.h b/util.h new file mode 100644 index 0000000..e69de29 diff --git a/util.o b/util.o new file mode 100644 index 0000000..952e991 Binary files /dev/null and b/util.o differ