vt100: include pgmspace.h as we use PROGMEM macro
[aversive.git] / projects / microb2010 / tests / hostsim / Makefile
1 TARGET = main
2
3 # Aversive root directory
4 AVERSIVE_DIR = ../../../..
5
6 # List C source files here. (C dependencies are automatically generated.)
7 SRC := $(TARGET).c cs.c robotsim.c cmdline.c commands.c
8 SRC += commands_cs.c commands_gen.c commands_mainboard.c
9 SRC += commands_traj.c strat.c strat_base.c strat_utils.c
10 SRC += actuator.c strat_avoid.c
11
12 # List Assembler source files here.
13 # Make them always end in a capital .S.  Files ending in a lowercase .s
14 # will not be considered source files but generated files (assembler
15 # output from the compiler), and will be deleted upon "make clean"!
16 # Even though the DOS/Win* filesystem matches both .s and .S the same,
17 # it will preserve the spelling of the filenames, and gcc itself does
18 # care about how the name is spelled on its command-line.
19 ASRC = 
20
21 CFLAGS += -Wall -Werror
22
23 -include .aversive_conf
24 include $(AVERSIVE_DIR)/mk/aversive_project.mk
25