aboutsummaryrefslogtreecommitdiff
path: root/src/entropy/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/entropy/Makefile')
-rw-r--r--src/entropy/Makefile18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/entropy/Makefile b/src/entropy/Makefile
index 0285460..68723b8 100644
--- a/src/entropy/Makefile
+++ b/src/entropy/Makefile
@@ -1,19 +1,3 @@
-# Application number and version info are included in the ELF file
-# symbol table through two global, asbolute symbols. Use nm(1) on an
-# ELF file to figure things out. Example:
-# nm entropy.elf | awk '/VERSION/{print $1}'
-
-# Application number:
-# - cc20rng: 01
-# - entropy: 02
-APPLICATION = 0x00000002
-
-# Version info is four octects, from most significant to least:
-# - Major version, two bytes: 00..FFFF
-# - Minor version, one byte: 00..FF
-# - Patch level, one byte: 00..FF
-VERSION = 0x00010000
-
# put your *.o targets here, make should handle the rest!
SRCS = main.c stm_init.c system_stm32f4xx.c stm32f4xx_it.c stm32f4xx_hal_msp.c
@@ -39,7 +23,7 @@ lib:
proj: $(PROJ_NAME).elf
$(PROJ_NAME).elf: $(SRCS)
- $(CC) $(CFLAGS) $^ -o $@ -L$(STD_PERIPH_LIB) -lstmf4 -L$(LDSCRIPT_INC) -T$(MCU_LINKSCRIPT) -g -Wl,--defsym=APPLICATION=$(APPLICATION) -Wl,--defsym=VERSION=$(VERSION)
+ $(CC) $(CFLAGS) $^ -o $@ -L$(STD_PERIPH_LIB) -lstmf4 -L$(LDSCRIPT_INC) -T$(MCU_LINKSCRIPT) -g
$(OBJCOPY) -O ihex $(PROJ_NAME).elf $(PROJ_NAME).hex
$(OBJCOPY) -O binary $(PROJ_NAME).elf $(PROJ_NAME).bin
$(OBJDUMP) -St $(PROJ_NAME).elf >$(PROJ_NAME).lst
id='n129' href='#n129'>129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172