We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88a23e8 commit 3b855eeCopy full SHA for 3b855ee
incld_root/Makefile
@@ -1,14 +1,5 @@
1
-######
2
-#
3
-# A simple Makefile
4
5
6
7
-MAKE=make
+all:: ; make -C utils/tempacc all
8
9
10
-
11
-all:: ; $(MAKE) -C utils/atscc build install
12
13
-cleanall:: ; rm -f bin/patscc
+cleanall:: ; rm -f bin/tempacc
14
incld_root/utils/tempacc/Makefile
@@ -9,14 +9,19 @@ MAKE=make
######
+all:: build
+all:: install
+
15
+######
16
17
SOURCES=\
18
tempacc_dats.c \
19
atscc_main_dats.c \
20
atscc_print_dats.c \
21
22
-all:: \
23
24
+build:: \
25
tempacc
26
tempacc : ; \
27
$(CC) -o $@ $(SOURCES) \
@@ -25,4 +30,8 @@ $(CC) -o $@ $(SOURCES) \
30
#
31
32
33
+install:: \
34
+cp -fp tempacc ./../../bin/
35
36
28
37
###### end of [Makefile_build] ######
0 commit comments