-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
66 lines (44 loc) · 1.1 KB
/
Makefile
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
include config/common.mk
include config/toslink-selector.mk
TARGET = toslink-selector
.DEFAULT: all
.SECONDARY: $(call objects, $(FILES)) $(call elfs, $(TARGET))
.PHONY: all
all: $(call hexs, $(TARGET)) size
.PHONY: size
size: $(call elfs, $(TARGET))
$(SIZE) $<
.PHONY: clean
clean:
$(call rm_gen)
.PHONY: rebuild
rebuild: clean all
.PHONY: program
program: all
$(LPC21ISP) -control $(call hexs, $(TARGET)) /dev/ttyUSB0 115200 12000
.PHONY: count
count:
$(call count, inc src spec)
.PHONY: test
test:
@$(MAKE) -C test --no-print-directory ENV=host exec
.PHONY: spec
spec:
@$(MAKE) -C spec --no-print-directory ENV=host exec
.PHONY: vendor
vendor:
@$(MAKE) -C vendor --no-print-directory
.PHONY: uart
uart:
@minicom -o
%.hex: %.elf
$(OBJCOPY) -O ihex $< $@
%.elf: $(call objects, $(FILES))
$(CC) $(LDFLAGS) $(call linkflags, $@) -o $@ $^ $(LIBS)
$(GEN_DIR)/%.o: $(ROOT_DIR)/%.c
$(call mkdir_gen, $@)
$(CC) -c $(CFLAGS) $(call dflags, $@) -o $@ $<
$(GEN_DIR)/%.o: $(ROOT_DIR)/%.cpp
$(call mkdir_gen, $@)
$(CXX) -c $(CXXFLAGS) $(call dflags, $@) -o $@ $<
-include $(call depends, $(FILES))