~ubuntu-branches/ubuntu/dapper/rdesktop/dapper

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Sam Johnston
  • Date: 2004-02-04 17:52:26 UTC
  • Revision ID: james.westby@ubuntu.com-20040204175226-m8z3u6891fd2qhed
Tags: 1.3.1-1
* New upstream release
* Removes unnecessary manpage. Closes: #223832.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
# Configuration defaults
8
8
 
9
 
prefix      = /usr/local
10
 
exec_prefix = $(prefix)
 
9
DESTDIR     = 
 
10
prefix      = /usr
 
11
exec_prefix = $(prefix)/X11R6
11
12
bindir      = $(exec_prefix)/bin
12
 
mandir      = $(prefix)/man
 
13
mandir      = $(prefix)/share/man
13
14
datadir     = $(prefix)/share/rdesktop
14
15
 
15
16
VERSION     = 1.3.1
55
56
 
56
57
installman: doc/rdesktop.1
57
58
        mkdir -p $(DESTDIR)/$(mandir)/man1
58
 
        cp doc/rdesktop.1 $(DESTDIR)/$(mandir)/man1
59
 
        chmod 644 $(DESTDIR)/$(mandir)/man1/rdesktop.1
 
59
        cp doc/rdesktop.1 $(DESTDIR)/$(mandir)/man1/rdesktop.1x
 
60
        chmod 644 $(DESTDIR)/$(mandir)/man1/rdesktop.1x
60
61
 
61
62
installkeymaps:
62
63
        mkdir -p $(DESTDIR)/$(KEYMAP_PATH)
69
70
proto:
70
71
        cproto -DMAKE_PROTO -DWITH_OPENSSL -o proto.h *.c
71
72
 
 
73
distclean: clean
 
74
 
72
75
clean:
73
76
        rm -f *.o crypto/*.o *~ vnc/*.o vnc/*~ rdesktop rdp2vnc
74
77