~ubuntu-branches/ubuntu/maverick/swig1.3/maverick

« back to all changes in this revision

Viewing changes to Source/DOH/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Landschoff
  • Date: 2002-03-29 01:56:07 UTC
  • Revision ID: james.westby@ubuntu.com-20020329015607-c0wt03xu8oy9ioj7
Tags: upstream-1.3.11
ImportĀ upstreamĀ versionĀ 1.3.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################
 
2
# Makefile
 
3
#
 
4
# DOH
 
5
##############################################################
 
6
 
 
7
prefix     = @prefix@
 
8
exec_prefix= @exec_prefix@
 
9
 
 
10
INCLUDE_DIR = $(prefix)/include
 
11
LIB_DIR = $(exec_prefix)/lib
 
12
 
 
13
# Installer
 
14
 
 
15
INSTALL        = ./install-sh -c
 
16
INSTALL_DATA   = ${INSTALL} -m 644
 
17
INSTALL_PROGRAM= ${INSTALL} -m 755
 
18
 
 
19
all:
 
20
        cd Doh; $(MAKE)
 
21
 
 
22
install:
 
23
        @echo "Installing $(LIB_DIR)/libdoh.a..."
 
24
        @$(INSTALL_DATA) libdoh.a $(LIB_DIR)/libdoh.a
 
25
        @echo "Installing $(INCLUDE_DIR)/doh.h..."
 
26
        @$(INSTALL_DATA) $(srcdir)/Include/doh.h $(INCLUDE_DIR)/doh.h
 
27
 
 
28
clean:
 
29
        cd Doh; $(MAKE) clean