Initial commit

This commit is contained in:
Pin
2021-10-22 15:31:44 -04:00
commit cb5a9f0a85
3 changed files with 62 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
OUTPUT_DIR = ./bin
OUTPUT = -o $(OUTPUT_DIR)/PROG
SOURCES = *.c
build: output_dir
gcc -Wall ${SOURCES} ${OUTPUT:PROG=upgrade}
output_dir:
mkdir -p ${OUTPUT_DIR}