Create folder structure, and template Makefile

This commit is contained in:
Lillian Salehi 2024-10-03 22:54:35 -05:00
parent c8fe2ea57b
commit 4250bba716

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
.PHONY: all
all: placeholder
.PHONY: dep
dep:
.PHONY: info
info:
@echo "make: Build executable"
@echo "make dep: Make all required dependencies"
@echo "make debug: Make with Debug hooked in"
@echo "make clean: Clean all files"