Line 28... |
Line 28... |
28 |
#put your C sourcefiles here |
28 |
#put your C sourcefiles here |
29 |
# Here you must list any C source files which are used by your target file. |
29 |
# Here you must list any C source files which are used by your target file. |
30 |
# They will be compiled in the order you list them, so it's probably best |
30 |
# They will be compiled in the order you list them, so it's probably best |
31 |
# to list $(TRG).c, your top-level target file, last. |
31 |
# to list $(TRG).c, your top-level target file, last. |
32 |
|
32 |
|
33 |
SRC = $(AVRLIB)/buffer.c $(AVRLIB)/uart2.c $(AVRLIB)/rprintf.c $(AVRLIB)/timer.c $(AVRLIB)/vt100.c $(AVRLIB)/tsip.c $(AVRLIB)/nmea.c $(AVRLIB)/gps.c $(AVRLIB)/lcd_hd44780.c $(TRG).c |
33 |
SRC = $(AVRLIB)/buffer.c $(AVRLIB)/uart2.c $(AVRLIB)/rprintf.c $(AVRLIB)/timer.c $(AVRLIB)/vt100.c $(AVRLIB)/tsip.c $(AVRLIB)/nmea.c $(AVRLIB)/gps.c $(AVRLIB)/lcd_hd44780.c $(TRG).c $(AVRLIB)/utm.c |
34 |
|
34 |
|
35 |
#put additional assembler source file here |
35 |
#put additional assembler source file here |
36 |
# The ASRC line allows you to list files which contain assembly code/routines that |
36 |
# The ASRC line allows you to list files which contain assembly code/routines that |
37 |
# you would like to use from within your C programs. The assembly code must be |
37 |
# you would like to use from within your C programs. The assembly code must be |
38 |
# written in a special way to be usable as a function from your C code. |
38 |
# written in a special way to be usable as a function from your C code. |
Line 90... |
Line 90... |
90 |
tsip.o : tsip.c tsip.h global.h |
90 |
tsip.o : tsip.c tsip.h global.h |
91 |
nmea.o : nmea.c nmea.h global.h |
91 |
nmea.o : nmea.c nmea.h global.h |
92 |
vt100.o : vt100.c vt100.h global.h |
92 |
vt100.o : vt100.c vt100.h global.h |
93 |
gps.o : gps.c gps.h global.h |
93 |
gps.o : gps.c gps.h global.h |
94 |
lcd_hd44780.o : lcd_hd44780.c lcd_hd44780.h global.h |
94 |
lcd_hd44780.o : lcd_hd44780.c lcd_hd44780.h global.h |
- |
|
95 |
utm.o : utm.c utm.h |
95 |
$(TRG).o : $(TRG).c global.h |
96 |
$(TRG).o : $(TRG).c global.h |