initial code commit

This commit is contained in:
Pin
2022-03-22 09:32:08 -04:00
committed by BuildTools
parent 0a6f36e4ea
commit 348ead46f9
4 changed files with 254 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
LIBRARIES = -lreadline
RELEASE_ARGS = -DRELEASEBUILD
SOURCES = ./msh.c
build:
gcc -Wall -std=gnu99 ${RELEASE_ARGS} ${SOURCES} ${LIBRARIES}
debug:
gcc -Wall -std=gnu99 ${SOURCES} ${LIBRARIES}