1 | # ============================================================================= |
---|
2 | # \file Makefile |
---|
3 | # \author Cesar Fuguet |
---|
4 | # \date July 9, 2014 |
---|
5 | # ============================================================================= |
---|
6 | include ../common.mk |
---|
7 | |
---|
8 | # ============================================================================= |
---|
9 | # Include files paths |
---|
10 | # ============================================================================= |
---|
11 | |
---|
12 | CONFDIR ?= output |
---|
13 | CONF := $(addprefix $(CONFDIR)/config/, hard_config.h) |
---|
14 | |
---|
15 | INCLUDE += -I$(CONFDIR)/config |
---|
16 | |
---|
17 | # ============================================================================= |
---|
18 | # Utils library |
---|
19 | # ============================================================================= |
---|
20 | |
---|
21 | LIB_SRCS := stdio.c \ |
---|
22 | string.c \ |
---|
23 | tty.c \ |
---|
24 | simhelper.c |
---|
25 | |
---|
26 | LIB_OBJS := $(addprefix $(BUILD_DIR)/,\ |
---|
27 | $(subst .c,.o, $(notdir $(LIB_SRCS)))) |
---|
28 | |
---|
29 | LIB_TARGET := $(BUILD_DIR)/libutils.a |
---|
30 | |
---|
31 | # ============================================================================= |
---|
32 | # Object files |
---|
33 | # ============================================================================= |
---|
34 | |
---|
35 | S_SRCS := reset.S |
---|
36 | C_SRCS := main.c |
---|
37 | |
---|
38 | OBJS := $(addprefix $(BUILD_DIR)/,\ |
---|
39 | $(subst .c,.o, $(notdir $(C_SRCS))) \ |
---|
40 | $(subst .S,.o, $(notdir $(S_SRCS)))) |
---|
41 | |
---|
42 | TARGET := $(BUILD_DIR)/soft.elf |
---|
43 | |
---|
44 | # ============================================================================= |
---|
45 | # Test variables |
---|
46 | # ============================================================================= |
---|
47 | PLATFORM := ../../../../../platforms/tsar_generic_iob |
---|
48 | SIMULATOR := $(PLATFORM)/simul.x |
---|
49 | |
---|
50 | # batch mode => no xterm or frame buffer windows |
---|
51 | SOCLIB_TTY := FILES |
---|
52 | SOCLIB_FB := HEADLESS |
---|
53 | SOCLIB_GDB ?= |
---|
54 | export SOCLIB_TTY SOCLIB_FB SOCLIB_GDB |
---|
55 | |
---|
56 | # ============================================================================= |
---|
57 | # Makefile rules |
---|
58 | # ============================================================================= |
---|
59 | |
---|
60 | all: $(TARGET) |
---|
61 | |
---|
62 | # Specific dependencies |
---|
63 | # NOTE: normal prerequisites | order-only prerequisites |
---|
64 | # SEE: http://www.gnu.org/software/make/manual/make.html#Prerequisite-Types |
---|
65 | |
---|
66 | $(LIB_OBJS): $(CONF) | $(BUILD_DIR) |
---|
67 | $(OBJS): $(CONF) | $(BUILD_DIR) |
---|
68 | |
---|
69 | $(LIB_TARGET): $(LIB_OBJS) |
---|
70 | $(AR) rcs $@ $(LIB_OBJS) |
---|
71 | |
---|
72 | $(TARGET): $(OBJS) ../soft.ld $(LIB_TARGET) |
---|
73 | $(LD) -o $@ -T ../soft.ld $(OBJS) -L$(BUILD_DIR) -lutils |
---|
74 | $(DU) -D $@ > $@.txt |
---|
75 | |
---|
76 | test: $(SIMULATOR) $(TARGET) |
---|
77 | @$< -SOFT $(TARGET) -DISK /dev/null 2> /dev/null >> $(CONFDIR)/log || true |
---|
78 | @soclib-cleanup-terms &> /dev/null || true |
---|
79 | @mv term0 $(CONFDIR)/term |
---|
80 | @grep -q "success" $(CONFDIR)/term |
---|
81 | @if [ $$? == 0 ]; \ |
---|
82 | then echo $$(basename $(PWD)) ": Success"; \ |
---|
83 | else echo $$(basename $(PWD)) ": Failure"; \ |
---|
84 | fi; |
---|
85 | |
---|
86 | $(SIMULATOR) $(CONF): $(PLATFORM)/scripts/onerun.py |
---|
87 | ./$< -o $(CONFDIR) -p $(PLATFORM) -x1 -y1 -n1 -c |
---|
88 | |
---|
89 | $(BUILD_DIR): |
---|
90 | $(MKDIR) $@ |
---|
91 | |
---|
92 | clean: |
---|
93 | $(RM) $(BUILD_DIR) |
---|
94 | |
---|
95 | clean-log: |
---|
96 | $(RM) $(CONFDIR) |
---|
97 | |
---|
98 | distclean: clean clean-log |
---|