-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (24 loc) · 778 Bytes
/
Makefile
File metadata and controls
28 lines (24 loc) · 778 Bytes
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
# tpp Makefile by Nico Golde <nico@ngolde.de>
# Latest Change: Sam Jul 31 00:58:01 CEST 2004
#################################################
AUTOMAKE_OPTIONS = foreign
BIN = tpp
prefix=/usr/local
INSPATH= $(prefix)/bin/
DOCPATH = $(prefix)/share/doc/tpp
MANPATH = $(prefix)/share/man/man1
all:
@echo "TPP doesn't need to be built. Run \`make install' in order to install it."
install :
mkdir -p $(DOCPATH)
install -m644 DESIGN CHANGES COPYING THANKS $(DOCPATH)
install -m644 doc/tpp.1 $(MANPATH)
install tpp.rb $(INSPATH)$(BIN)
mkdir -p $(DOCPATH)/contrib
mkdir -p $(DOCPATH)/examples
install -m644 examples/* $(DOCPATH)/examples/
install -m644 contrib/* $(DOCPATH)/contrib/
uninstall :
rm -f $(INSPATH)$(BIN)
rm -rf $(DOCPATH)
rm -f $(MANPATH)/tpp.1*