The examples section is confusing at the best of times, and really
[sgt/utils] / xcopy / Makefile
CommitLineData
1166ff62 1# for `make release' and `make html'
8a48d402 2DESTDIR = .
3
1166ff62 4# for `make install'
5PREFIX = /usr/local
6BINDIR = $(PREFIX)/bin
c51c76d1 7SCRIPTDIR = $(PREFIX)/bin
1166ff62 8MANDIR = $(PREFIX)/man/man1
f6cacff9 9INSTALL = install
10IPROG =# flags for installing programs (default none)
11IDATA = -m 0644 # flags for installing data
1166ff62 12
9acadc2b 13X11LIB=-L/usr/X11R6/lib -lX11
14
15all: xcopy.1 xcopy
16
17xcopy: xcopy.c
18 $(CC) $(CFLAGS) -o $@ $< $(X11LIB)
19
20%.1: %.but
21 halibut --man=$@ $<
22
23clean:
8a48d402 24 rm -f *.1 xcopy *.html *.tar.gz
25
26html:
27 halibut --html=$(DESTDIR)/xcopy.html xcopy.but
28
29release: xcopy.1
30 mkdir -p reltmp/xcopy
31 ln -s ../../xcopy.c reltmp/xcopy
32 ln -s ../../xcopy.1 reltmp/xcopy
33 ln -s ../../xcopy.but reltmp/xcopy
34 ln -s ../../Makefile reltmp/xcopy
ef397e72 35 tar -C reltmp -chzf $(DESTDIR)/xcopy.tar.gz xcopy
8a48d402 36 rm -rf reltmp
37
1166ff62 38install: xcopy xcopy.1
39 mkdir -p $(BINDIR)
f6cacff9 40 $(INSTALL) $(IPROG) xcopy $(BINDIR)/xcopy
1166ff62 41 mkdir -p $(MANDIR)
f6cacff9 42 $(INSTALL) $(IDATA) xcopy.1 $(MANDIR)/xcopy.1