Skip to content

Commit 3b855ee

Browse files
committed
updating Makefiles
1 parent 88a23e8 commit 3b855ee

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

incld_root/Makefile

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
1-
######
2-
#
3-
# A simple Makefile
4-
#
5-
######
61

7-
MAKE=make
2+
all:: ; make -C utils/tempacc all
83

9-
######
10-
11-
all:: ; $(MAKE) -C utils/atscc build install
12-
13-
cleanall:: ; rm -f bin/patscc
4+
cleanall:: ; rm -f bin/tempacc
145

incld_root/utils/tempacc/Makefile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@ MAKE=make
99

1010
######
1111

12+
all:: build
13+
all:: install
14+
15+
######
16+
1217
SOURCES=\
1318
tempacc_dats.c \
1419
atscc_main_dats.c \
1520
atscc_print_dats.c \
1621

1722
######
18-
#
19-
all:: \
23+
24+
build:: \
2025
tempacc
2126
tempacc : ; \
2227
$(CC) -o $@ $(SOURCES) \
@@ -25,4 +30,8 @@ $(CC) -o $@ $(SOURCES) \
2530
#
2631
######
2732

33+
install:: \
34+
cp -fp tempacc ./../../bin/
35+
36+
2837
###### end of [Makefile_build] ######

0 commit comments

Comments
 (0)