mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 13:43:10 +00:00
15 lines
367 B
Makefile
15 lines
367 B
Makefile
|
TRICK_CFLAGS += -I./models -I${TRICK_HOME} -g -O0 -Wall -Wextra -Wshadow
|
||
|
TRICK_CXXFLAGS += -I./models -I${TRICK_HOME} -g -O0 -Wall -Wextra -Wshadow
|
||
|
|
||
|
.PHONY: clean_graphics
|
||
|
|
||
|
all: models/graphics/build/RobotDisplay.jar
|
||
|
|
||
|
spotless: clean_graphics
|
||
|
|
||
|
models/graphics/build/RobotDisplay.jar:
|
||
|
${MAKE} -C ./models/graphics
|
||
|
|
||
|
clean_graphics:
|
||
|
${MAKE} -C ./models/graphics clean
|