-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
35 lines (31 loc) · 999 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
PLATFORM=NANO54415
#This is a minimal make file.
#anything that starts with a # is a comment
#
#To generate the dependancies automatically
#run "make depend"
#
#
#To clean up the directory
#run "make clean"
#Your responsibilities as a programmer:
#
# Run make depend whenever:
# You add files to the project
# You change what files are included in a source file
#
# make clean whenever you change this makefile.
#
#Setup the project root name
#This will built NAME.s19 and save it as $(NNDK_ROOT)/bin/NAME.s19+
#This will built NAME_App.s19 and save it as $(NNDK_ROOT)/bin/NAME_App.s19+
NAME = AVCCode
CXXSRCS := main.cpp htmldata.cpp dsm2.cpp lidar.cpp introspec.cpp servodrive.cpp mpu9250.cpp path.cpp SinLookUp.cpp
#Uncomment and modify these lines if you have C or S files.
#CSRCS := foo.c
#ASRCS := foo.s
CREATEDTARGS := htmldata.cpp
#include the file that does all of the automagic work!
htmldata.cpp : $(wildcard html/*.*)
comphtml html -ohtmldata.cpp
include $(NNDK_ROOT)/make/main.mak