aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--projects/hsm/Makefile13
-rw-r--r--projects/hsm/hsm.c (renamed from projects/hsm/main.c)0
2 files changed, 6 insertions, 7 deletions
diff --git a/projects/hsm/Makefile b/projects/hsm/Makefile
index f5546d8..d8fd1f9 100644
--- a/projects/hsm/Makefile
+++ b/projects/hsm/Makefile
@@ -1,8 +1,7 @@
PROJ = hsm
-SRCS = main.c
-
-OBJS = $(SRCS:.c=.o)
+# objs in addition to $(PROJ).o
+OBJS =
CFLAGS += -I $(LIBHAL_DIR)
@@ -10,10 +9,10 @@ LIBS += $(LIBHAL_DIR)/libhal.a $(LIBTFM_DIR)/libtfm.a
all: $(PROJ:=.elf)
-$(PROJ).elf: $(OBJS) $(BOARD_OBJS) $(LIBS)
- $(CC) $(CFLAGS) $^ -o $@ -T$(LDSCRIPT) -g -Wl,-Map=$(PROJ).map
- $(OBJCOPY) -O binary $(PROJ).elf $(PROJ).bin
- $(SIZE) $(PROJ).elf
+%.elf: %.o $(BOARD_OBJS) $(OBJS) $(LIBS)
+ $(CC) $(CFLAGS) $^ -o $@ -T$(LDSCRIPT) -g -Wl,-Map=$*.map
+ $(OBJCOPY) -O binary $*.elf $*.bin
+ $(SIZE) $*.elf
clean:
rm -f *.o
diff --git a/projects/hsm/main.c b/projects/hsm/hsm.c
index 79c567b..79c567b 100644
--- a/projects/hsm/main.c
+++ b/projects/hsm/hsm.c