first boilerplate
This commit is contained in:
20
Code/Makefile
Normal file
20
Code/Makefile
Normal file
@@ -0,0 +1,20 @@
|
||||
#
|
||||
# MYRYS ROVER BUILD CONTROLER
|
||||
#
|
||||
|
||||
COPT = -g -Wall -DDEBUG_LEVEL=0
|
||||
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
protocol.o: protocol.c protocol.h Makefile
|
||||
gcc -c $(COPT) $< -o $@
|
||||
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
mcp: mcp.c protocol.o Makefile
|
||||
gcc $(COPT) $< protocol.o -o $@
|
||||
|
||||
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
Reference in New Issue
Block a user