1 # oyvholm/utils/Git/Makefile
2 # File ID: 83bbcb90-4aeb-11e6-b612-02010e0a6634
5 # FIXME: Make gpstools work
6 DIRS
= $$(echo
$? | fmt
-1 | cut
-f
1 -d
/ | grep
-v gpstools |
sort -u
)
10 for f in
$(DIRS
); do
(cd
$$f && $(MAKE
)) || exit
1; done
16 fullclean
: $(MAKEFILES
)
18 for f in
$(DIRS
); do
(cd
$$f && $(MAKE
) clean) || exit
1; done
22 for f in
$(DIRS
); do
(cd
$$f && $(MAKE
) test) || exit
1; done
26 if
test -f gpstools
/Makefile
; then \
27 cd gpstools
/tests
&& \
31 .
/roundgpx.t || exit
1; \
33 if
test -f spar
/Makefile
; then cd spar
&& $(MAKE
) test; fi
34 if
test -f suuid
/Makefile
; then cd suuid
&& $(MAKE
) test; fi
37 valgrind
: $(MAKEFILES
)
38 for f in
$(DIRS
); do \
39 if grep
-q ^valgrind
: $$f/Makefile
; then \
40 (cd
$$f && $(MAKE
) valgrind
) || exit
1; \