nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 AC_ROOT = ..
2 include $(AC_ROOT)/common.mak
3  
4 MP_FILES = aircrack-ng.1 airdecap-ng.1 ivstools.1 kstats.1 makeivs-ng.1 \
5 packetforge-ng.1 airdecloak-ng.1 wpaclean.1 besside-ng-crawler.1
6  
7 SMP_FILES = aireplay-ng.8 airmon-ng.8 airodump-ng.8 besside-ng.8 \
8 airserv-ng.8 airtun-ng.8 airbase-ng.8 airodump-ng-oui-update.8 \
9  
10 ifeq ($(subst TRUE,true,$(filter TRUE true,$(sqlite) $(SQLITE))),true)
11 MP_FILES += airolib-ng.1
12 endif
13  
14 ifeq ($(subst TRUE,true,$(filter TRUE true,$(experimental) $(EXPERIMENTAL))),true)
15 MP_FILES += buddy-ng.1
16 SMP_FILES += tkiptun-ng.8 easside-ng.8 wesside-ng.8
17 endif
18  
19  
20 default: all
21  
22 all:
23 @echo Nothing to do
24  
25 install: uninstall
26 install -d $(DESTDIR)$(mandir)
27 install -d $(DESTDIR)$(smandir)
28 install -m 644 $(MP_FILES) $(DESTDIR)$(mandir)
29 install -m 644 $(SMP_FILES) $(DESTDIR)$(smandir)
30  
31 # Uninstall just calls cleanfiles with all possible switches enabled to
32 # ensure all previously installed manpages are cleaned
33 uninstall:
34 $(MAKE) cleanfiles sqlite=true experimental=true
35  
36 cleanfiles:
37 @-$(foreach CUR_MP,$(MP_FILES), rm -f $(DESTDIR)$(mandir)/$(CUR_MP); echo rm -f $(DESTDIR)$(mandir)/$(CUR_MP); )
38 @-$(foreach CUR_SMP,$(SMP_FILES), rm -f $(DESTDIR)$(smandir)/$(CUR_SMP); echo rm -f $(DESTDIR)$(smandir)/$(CUR_SMP); )