~vm/vm/vmpc-prompt

« back to all changes in this revision

Viewing changes to pixmaps/Makefile.in

  • Committer: Robert Widhopf-Fenk
  • Date: 2007-04-16 22:55:16 UTC
  • mto: This revision was merged to the branch mainline in revision 363.
  • Revision ID: hack@robf.de-20070416225516-deyefao2kl3s09if
Implemented proper "make install".

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
@SET_MAKE@
 
2
 
 
3
# no csh please
 
4
SHELL = /bin/sh
 
5
 
 
6
SOURCES = vm-version.el $(wildcard *.el)
 
7
 
 
8
##############################################################################
 
9
# location of required programms
 
10
prefix = @prefix@
 
11
MKDIR = @MKDIR@
 
12
RM   = @RM@
 
13
LS   = @LS@
 
14
XARGS = @XARGS@
 
15
INSTALL = @INSTALL@
 
16
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
17
INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
18
INSTALL_DATA = @INSTALL_DATA@
 
19
 
 
20
top_srcdir = @top_srcdir@
 
21
srcdir = @srcdir@
 
22
datadir= @datadir@/vm
 
23
datarootdir= @datarootdir@
 
24
lispdir = @lispdir@/pixmaps
 
25
 
 
26
EMACS_PROG = @EMACS_PROG@
 
27
EMACS_FLAVOR = @EMACS_FLAVOR@
 
28
 
 
29
FLAGS = @FLAGS@
 
30
 
 
31
SYMLINKS = @SYMLINKS@
 
32
LINKPATH = @LINKPATH@
 
33
 
 
34
##############################################################################
 
35
 
 
36
all:
 
37
 
 
38
Makefile: @srcdir@/Makefile.in
 
39
        cd @srcdir@/..; ./config.status
 
40
 
 
41
install: install-pkg
 
42
 
 
43
install-pkg: 
 
44
        $(MKDIR) -p $(lispdir)
 
45
        @for i in `ls *.xpm* ` ; do                                    \
 
46
            echo "Installing $$i in $(lispdir)" ;                      \
 
47
            $(INSTALL_DATA) $$i $(lispdir) ;                           \
 
48
        done ;                                                         
 
49
        @echo VM pixmaps successfully installed\!
 
50
 
 
51
##############################################################################
 
52
clean:
 
53
        -$(RM) -f *.info *.info-[0-9]
 
54
 
 
55
distclean: clean
 
56
        -$(RM) -f Makefile
 
57