You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
279 B
14 lines
279 B
# build for 32bit
|
|
MEXOPT += -maci
|
|
MEXOPT += -I/opt/local/include
|
|
|
|
OTHER = ArmControl.cpp Command.cpp SSC32Controller.cpp
|
|
|
|
build: crustcrawler.mexmaci
|
|
|
|
crustcrawler.mexmaci: crustcrawler.cpp
|
|
echo $(PATH)
|
|
mex $(MEXOPT) crustcrawler.cpp $(OTHER)
|
|
|
|
clean:
|
|
rm crustcrawler.mexmaci
|