Makefile.ALL
2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!gmake
ifndef SIMTOOLS
SIMTOOLS = ../../..
endif
include $(SIMTOOLS)/makedefs
TARGET = flashlitelib.a
VPATH = ..
################################################################
# Include files
################################################################
ifdef SIMDIR
FLASHLITEDIR = -I$(SIMDIR)
else
FLASHLITEDIR =
endif
ifdef FLASHPOINT
INCS = -I.. -I$(SIMTOOLS)/cpus/mipsy -I$(SIMTOOLS)/cpus/simos \
-I$(SIMTOOLS)/caches/2Level -I$(SIMTOOLS)/memsystems $(FLASHLITEDIR) \
-I$(SIMTOOLS)/cpus/solo -I$(SIMTOOLS)/cpus/shared -I$(MEMSPY_DIR) \
$(GLOBAL_INCS)
else
INCS = -I.. -I$(SIMTOOLS)/cpus/mipsy -I$(SIMTOOLS)/cpus/simos \
-I$(SIMTOOLS)/caches/2Level -I$(SIMTOOLS)/memsystems $(FLASHLITEDIR) \
-I$(SIMTOOLS)/cpus/solo -I$(SIMTOOLS)/cpus/shared $(GLOBAL_INCS)
endif
################################################################
# DEFINES
################################################################
ifdef SOLO
DEF1 = -DSOLO
endif
ifdef USE_FLASHLITE
DEF3 = -DUSE_FLASHLITE -DFIREWALL_HACK
endif
DEFS = $(DEF1) $(DEF2) $(DEF3) $(GLOBAL_DEFS)
################################################################
# Compilation flags and targets
################################################################
CFLAGS = $(GLOBAL_CFLAGS)
ifdef SOLO
CFLAGS += $(SOLOCFLAGS)
endif
ifeq ($(CPU),SGI)
CFLAGS += -Xcpluscomm
endif
CC_OPTS = $(CFLAGS) $(DEFS) $(INCS)
C_TARGETS = flash_interface.o flash_faults.o
ifdef USE_FLASHLITE
ifndef SOLO
C_TARGETS += firewallhack.o
endif
endif
TARGETS = $(C_TARGETS)
default: warn
ifdef SOLO
@$(MAKE) -f ../Makefile.ALL SOLO=1 deps
@$(MAKE) -f ../Makefile.ALL SOLO=1 INCLUDE_DEPS=1 $(TARGET)
else
@$(MAKE) -f ../Makefile.ALL deps
@$(MAKE) -f ../Makefile.ALL INCLUDE_DEPS=1 $(TARGET)
endif
$(TARGET): $(TARGETS)
@echo "-> Updating library $(TARGET)"
$(AR) cru $(TARGET) $(TARGETS)
warn:
@echo ""
@echo "Making flashlite"
@echo "****************"
@echo " DEFS : `$(FORMAT) $(DEFS)`"
@echo " CFLAGS : `$(FORMAT) $(CFLAGS)`"
@echo ""
$(C_TARGETS): %.o: $(SIMTOOLS)/memsystems/flashlite/%.c
@echo "Compiling $(<F)"
$(CC) $(CC_OPTS) -c $(SIMTOOLS)/memsystems/flashlite/$*.c
deps: ${TARGETS:.o=.d}
%.d: %.c
@echo "Finding dependencies of $(<F)"
@$(CC) -M $(CC_OPTS) $< > $@
ifdef INCLUDE_DEPS
include ${TARGETS:.o=.d}
endif