Big commit: Cleaned formatting of Pish, added CommandStruct and Common.h for it

This commit is contained in:
2022-10-25 01:09:00 -05:00
parent c21e2fb7f6
commit 52aeeb02e5
5 changed files with 69 additions and 47 deletions
+5 -4
View File
@@ -1,14 +1,15 @@
INC := -I include
all: main exec
all: compile link
main:
compile:
gcc $(INC) -c -o build/main.o src/main.c
gcc $(INC) -c -o build/Integrated.o src/Integrated.c
gcc $(INC) -c -o build/Pish.o src/Pish.c
exec:
link:
gcc -o bin/pish.out build/*.o
clean:
rm build/*
rm build/*.o
rm bin/*.out