mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
b4ad77840e
New trickcomm test sim was not compiling on the Mac because of linux only define. refs #191
15 lines
190 B
Makefile
15 lines
190 B
Makefile
|
|
TRICK_CFLAGS += -I.
|
|
TRICK_CXXFLAGS += -I.
|
|
|
|
S_main: tc_server
|
|
tc_server: tc_server.c
|
|
${TRICK_CC} -o $@ $<
|
|
|
|
clean: clean_tc_apps
|
|
spotless: clean_tc_apps
|
|
|
|
clean_tc_apps:
|
|
${RM} -f tc_server
|
|
|