Makefile.ALL
1.58 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
#!gmake
ifndef SIMTOOLS
SIMTOOLS = ../../..
endif
include $(SIMTOOLS)/makedefs
TARGET = memsysmisc.a
VPATH = ..
################################################################
# Include Files
################################################################
#INCS = -I$(SIMTOOLS)/cpus/mipsy -I$(SIMTOOLS)/cpus/simos -I$(SIMTOOLS)/cpus/solo \
# -I$(SIMTOOLS)/caches/2Level -I$(SIMTOOLS)/common/tcl \
# -I$(SIMTOOLS)/memsystems -I$(SIMTOOLS)/cpus/shared $(GLOBAL_INCS)
INCS = -I$(SIMTOOLS)/memsystems -I$(SIMTOOLS)/caches/2Level $(GLOBAL_INCS)
ifdef SOLO
INCS += -I$(SIMTOOLS)/cpus/solo
endif
ifdef SOLO
DEF1 = -DSOLO
endif
DEFS = $(DEF1) $(DEF2) $(GLOBAL_DEFS)
CFLAGS += $(GLOBAL_CFLAGS)
CC_OPTS = $(CFLAGS) $(INCS) $(DEFS)
C_TARGETS = perfectmem.o busuma.o numa.o common.o
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 memsys.a"
$(AR) cru $(TARGET) $(TARGETS)
warn:
@echo ""
@echo "Making Misc. Memory Systems"
@echo "***************************"
@echo " DEFS : `$(FORMAT) $(DEFS)`"
@echo " CFLAGS : `$(FORMAT) $(CFLAGS)`"
@echo ""
$(C_TARGETS): %.o: $(SIMTOOLS)/memsystems/misc/%.c
@echo "Compiling $(<F)"
$(CC) $(CC_OPTS) -c $(SIMTOOLS)/memsystems/misc/$*.c
deps: ${TARGETS:.o=.d}
%.d: %.c
@echo "Finding dependencies of $(<F)"
@$(CC) -M $(CC_OPTS) $< > $@
ifdef INCLUDE_DEPS
include ${TARGETS:.o=.d}
endif