summaryrefslogtreecommitdiff
path: root/other/b-scan/tmp/Makefile
blob: 8306b6cf270cdc8a3e6a0c3bb0a1d60914ece65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Makefile of (m)bscan v0.0, skyper
# Massiv Banner Scanner
#
# GNU-make mandatory!

SUBDIRS=support src modules

# edit support/Makefile
# edit src/Makefile
# edit modules/Makefile

all:	
	for dir in $(SUBDIRS); do \
	    $(MAKE) -C $$dir; \
        done

clean:
	for dir in $(SUBDIRS); do \
	    $(MAKE) -C $$dir clean; \
        done

pack:
	rm -f bscan.tar.gz
	tar cfvz bscan.tar.gz support/*.c support/Makefile src/*.c src/*.l src/Makefile include/bscan/*.h Makefile MODULES PROBLEMS INSTALL  README modules/*.c modules/Makefile