File: Makefile

package info (click to toggle)
mseed2sac 2.2%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 292 kB
  • sloc: ansic: 2,388; makefile: 32
file content (12 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12

DIRS = libmseed src

all clean static install ::
	@for d in $(DIRS) ; do \
	    echo "Running $(MAKE) $@ in $$d" ; \
	    if [ -f $$d/Makefile -o -f $$d/makefile ] ; \
	        then ( cd $$d && $(MAKE) $@ ) ; \
	    elif [ -d $$d ] ; \
	        then ( echo "ERROR: no Makefile/makefile in $$d for $(CC)" ) ; \
	    fi ; \
	done