diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-05 18:35:05 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-05 18:35:05 +0000 |
commit | 000c4c6c5ccc2c136f25fc4bcede6de093b301c6 (patch) | |
tree | d71683cba376f98d8ce41b1822d636ee13b89060 /LUFA/CodeTemplates | |
parent | d887c0c73cbfc16a1e51207041fd94399de70c29 (diff) | |
download | lufa-000c4c6c5ccc2c136f25fc4bcede6de093b301c6.tar.gz lufa-000c4c6c5ccc2c136f25fc4bcede6de093b301c6.tar.bz2 lufa-000c4c6c5ccc2c136f25fc4bcede6de093b301c6.zip |
Strip out BuildTest sub-makefile contents as much as possible. Remove old UC3 build test makefile from the ModuleTest build test. Add platform module to the example LUFA makefile.
Diffstat (limited to 'LUFA/CodeTemplates')
-rw-r--r-- | LUFA/CodeTemplates/makefile_template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/CodeTemplates/makefile_template b/LUFA/CodeTemplates/makefile_template index 0be15b2c9..25a41dd15 100644 --- a/LUFA/CodeTemplates/makefile_template +++ b/LUFA/CodeTemplates/makefile_template @@ -16,7 +16,7 @@ F_CPU = 8000000 F_USB = $(F_CPU)
OPTIMIZATION = s
TARGET = Target
-SRC = $(TARGET).c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS)
+SRC = $(TARGET).c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS) $(LUFA_SRC_PLATFORM)
LUFA_PATH = ../../LUFA/
CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/
LD_FLAGS =
|