redid structure for 334 keeping things clean now

This commit is contained in:
shockrah
2019-09-08 18:26:58 -07:00
parent 6e9ef2f3d2
commit bc5affc51b
8 changed files with 107 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
# Single make file for everything becauz lazy
1:
gcc bindec.c -o bin
object=hw.c
cc=gcc
output=bin
default:
$(cc) $(object) -o $(output)
clean:
rm -f $(output)