-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
46 lines (26 loc) · 969 Bytes
/
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
# =========================================================================
# This makefile was generated by
# Bakefile 0.2.8 (http://www.bakefile.org)
# Do not modify, all changes will be overwritten!
# =========================================================================
# -------------------------------------------------------------------------
# These are configurable options:
# -------------------------------------------------------------------------
# -------------------------------------------------------------------------
# Do not modify the rest of this file!
# -------------------------------------------------------------------------
### Variables: ###
### Conditionally set variables: ###
### Targets: ###
all: test
install:
uninstall:
clean:
rm -f ./*.o
rm -f ./*.d
-(cd test && $(MAKE) clean)
test:
(cd test && $(MAKE) all)
.PHONY: all install uninstall clean test
# Dependencies tracking:
-include ./*.d