10 lines
195 B
Makefile
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}
|