-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
57 lines (43 loc) · 1.43 KB
/
Makefile.in
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
# Generated with autoconf from @configure_input@
SHELL := /bin/bash
.PHONY: all mostlyclean clean hardware software os project
LOKI_ROOT_ABS = @abs_top_builddir@
HWSW_PATH=${LOKI_ROOT_ABS}/design/
OS_PATH=@os_path@
all: os
project:
$(MAKE) -C ${HWSW_PATH} project
hardware:
$(MAKE) -C ${HWSW_PATH} hardware
software: hardware
$(MAKE) -C ${HWSW_PATH} software
os: hardware software
$(MAKE) -C ${OS_PATH} all
mostlyclean:
$(info mostlycleaning HW/SW files)
$(MAKE) -C ${HWSW_PATH} mostlyclean
$(info mostlycleaning OS image files)
$(MAKE) -C ${OS_PATH} mostlyclean
clean:
$(info cleaning HW/SW files)
$(MAKE) -C ${HWSW_PATH} clean
$(info cleaning OS image files)
$(MAKE) -C ${OS_PATH} clean
distclean:
# Allow sub-makefiles the chance to cleanly delete things (potentially exporting
# changes to other places), then manually delete anything untracked
$(info distcleaning HW/SW files)
$(MAKE) -C ${HWSW_PATH} distclean
$(info distcleaning OS image files)
$(MAKE) -C ${OS_PATH} distclean
$(warning Attempting to remove any untracked files from loki)
git clean -x --force --exclude pre-built .
clobber:
# Command sub-makefiles to clobber their directories, then manually delete
# anything untracked.
$(info clobbering HW/SW files)
$(MAKE) -C ${HWSW_PATH} clobber
$(info clobbering OS image files)
$(MAKE) -C ${OS_PATH} clobber
$(warning Attempting to remove any untracked files from loki)
git clean -x --force --exclude pre-built .