diff --git a/Makefile b/Makefile index e69de29..024bf96 100644 --- a/Makefile +++ b/Makefile @@ -0,0 +1,19 @@ +# +# Pish +# +# Authors: Gregory +# Samantha +# Readme: README.md +# + +all: main exec + +main: + gcc -c -o build/main.o src/main.c + +exec: + gcc -o bin/pish build/*.o + ./bin/pish + +clean: + rm build/* diff --git a/bin/pish b/bin/pish new file mode 100755 index 0000000..c701370 Binary files /dev/null and b/bin/pish differ diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..49d012e --- /dev/null +++ b/src/main.c @@ -0,0 +1,6 @@ +#include + +int main() +{ + printf("Hello world\n"); +}