Files
math_shell/Makefile
2022-03-22 09:32:08 -04:00

10 lines
195 B
Makefile

LIBRARIES = -lreadline
RELEASE_ARGS = -DRELEASEBUILD
SOURCES = ./msh.c
build:
gcc -Wall -std=gnu99 ${RELEASE_ARGS} ${SOURCES} ${LIBRARIES}
debug:
gcc -Wall -std=gnu99 ${SOURCES} ${LIBRARIES}