summaryrefslogtreecommitdiff
path: root/other/b-scan/tmp/Makefile
diff options
context:
space:
mode:
authorRoot THC2026-02-24 12:42:47 +0000
committerRoot THC2026-02-24 12:42:47 +0000
commitc9cbeced5b3f2bdd7407e29c0811e65954132540 (patch)
treeaefc355416b561111819de159ccbd86c3004cf88 /other/b-scan/tmp/Makefile
parent073fe4bf9fca6bf40cef2886d75df832ef4b6fca (diff)
initial
Diffstat (limited to 'other/b-scan/tmp/Makefile')
-rw-r--r--other/b-scan/tmp/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/other/b-scan/tmp/Makefile b/other/b-scan/tmp/Makefile
new file mode 100644
index 0000000..8306b6c
--- /dev/null
+++ b/other/b-scan/tmp/Makefile
@@ -0,0 +1,27 @@
1#
2# Makefile of (m)bscan v0.0, skyper
3# Massiv Banner Scanner
4#
5# GNU-make mandatory!
6
7SUBDIRS=support src modules
8
9# edit support/Makefile
10# edit src/Makefile
11# edit modules/Makefile
12
13all:
14 for dir in $(SUBDIRS); do \
15 $(MAKE) -C $$dir; \
16 done
17
18clean:
19 for dir in $(SUBDIRS); do \
20 $(MAKE) -C $$dir clean; \
21 done
22
23pack:
24 rm -f bscan.tar.gz
25 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
26
27