prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
datarootdir = $(prefix)/share
mandir = @mandir@
datadir = $(datarootdir)/@PACKAGE_NAME@
exec_perms = 0755
install-suid-root: exec_perms = 4755
CC = @CC@
CFLAGS = @CFLAGS@
DEFS = @DEFS@
LDLIBS = @LIBS@
INSTALL = @INSTALL@
RM = rm -vf
MAIN = @PACKAGE_NAME@.c
HEADERS = @PACKAGE_NAME@.h llist.h iw_if.h
PURESRC = $(filter-out $(MAIN),$(wildcard *.c))
OBJS = $(PURESRC:.c=.o)
DOCS = README NEWS THANKS AUTHORS COPYING ChangeLog
%.o: %.c $(HEADERS)
$(CC) $(CFLAGS) $(DEFS) -c -o $@ $<
all: @PACKAGE_NAME@
@PACKAGE_NAME@: $(MAIN) $(OBJS)
$(MAIN): Makefile
Makefile: Makefile.in config.status
./config.status
config.status: configure
./config.status --recheck
configure: configure.ac
autoconf
tags: $(MAIN) $(PURESRC) $(HEADERS)
ctags $^ > $@
.PHONY: all install uninstall clean distclean
install: install-binaries install-docs
install-suid-root install-binaries: all
$(INSTALL) -m 0755 -d $(DESTDIR)$(bindir)
$(INSTALL) -m $(exec_perms) @PACKAGE_NAME@ $(DESTDIR)$(bindir)
install-docs: @PACKAGE_NAME@.1 @PACKAGE_NAME@rc.5 $(DOCS)
$(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man1
$(INSTALL) -m 0644 @PACKAGE_NAME@.1 $(DESTDIR)$(mandir)/man1
$(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man5
$(INSTALL) -m 0644 @PACKAGE_NAME@rc.5 $(DESTDIR)$(mandir)/man5
$(INSTALL) -m 0755 -d $(DESTDIR)$(datadir)
$(INSTALL) -m 0644 $(DOCS) $(DESTDIR)$(datadir)
uninstall:
@$(RM) $(bindir)/@PACKAGE_NAME@
@$(RM) $(mandir)/man1/@PACKAGE_NAME@.1
@$(RM) $(mandir)/man5/@PACKAGE_NAME@rc.5
@$(RM) -r $(datadir)
clean:
@$(RM) *.o *~ tags @PACKAGE_NAME@
distclean: uninstall clean
@$(RM) config.status config.log config.cache Makefile
@$(RM) -r autom4te.cache
2245'>diffstats
blob: 731c42d18c71092a13dbe478c37fdcdc3793be0f (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#!/bin/sh
#
# ipkg build script for wavemon
#
# Extracted from a former Makefile target by Dave W. Capella
#
# However I could not reach that person, hence $maintainer is commented out.
# Send any updates / suggestions to gerrit@erg.abdn.ac.uk.
# CONFIGURATION
#maintainer="dave w capella <dave.capella@cornell.edu>" # email address outdated
version="0.5"
build_dir="./ipkg"
ctl_dir="${build_dir}/CONTROL"
bin_dir="${build_dir}/usr/local/bin"
doc_dir="${build_dir}/usr/doc/wavemon"
men_dir="${build_dir}/usr/lib/menu"
set -e
# 'clean' option
case "$1" in
clean|CLEAN) rm -vfr $build_dir; exit 0;
esac
# Build directories
for dir in $ctl_dir $bin_dir $doc_dir $men_dir
do
test -d $dir || mkdir -vp $dir
done
# Binary
test -f ../wavemon || exec echo "Run 'make' first to build wavemon"
cp -vp ../wavemon ${bin_dir}
# Documentation
for ipaq_doc in ../AUTHORS ../COPYING ../Makefile ../README
do
cp -vp ${ipaq_doc} ${doc_dir}
done
groff -Tascii -man ../wavemon.1 > ${doc_dir}/wavemon.doc
groff -Tascii -man ../wavemonrc.5 > ${doc_dir}/wavemonrc.doc
# Menu
cat > ${men_dir}/wavemon <<EO_MENU
?package(wavemon): needs="text" section="Utilities" title="wavemon" command="wavemon"
EO_MENU
# Control
cat > ${ctl_dir}/control <<EO_CONTROL
Package: wavemon
Version: $version
Architecture: arm
Maintainer: ${maintainer:-unknown}
Description: Wireless network monitoring tool
Priority: optional
Section: extras
EO_CONTROL
# Build
ipkg-build ${build_dir}
|