mirror of
https://framagit.org/bortzmeyer/echoping
synced 2024-11-05 06:00:37 +00:00
23 lines
351 B
Makefile
23 lines
351 B
Makefile
SUBDIRS=@subdirs@
|
|
|
|
all:
|
|
ifneq (${SUBDIRS},)
|
|
@for subdir in ${SUBDIRS}; do \
|
|
(cd $$subdir && ${MAKE} HAVE_CONFIG_H=1 $@) \
|
|
done
|
|
endif
|
|
|
|
install:
|
|
ifneq (${SUBDIRS},)
|
|
@for subdir in ${SUBDIRS}; do \
|
|
(cd $$subdir && ${MAKE} $@) \
|
|
done
|
|
endif
|
|
|
|
distdir:
|
|
ifneq (${SUBDIRS},)
|
|
@for subdir in ${SUBDIRS}; do \
|
|
(cd $$subdir && ${MAKE} $@) \
|
|
done
|
|
endif
|