~ubuntu-branches/ubuntu/lucid/cdrdao/lucid

« back to all changes in this revision

Viewing changes to scsilib/export/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Suffield
  • Date: 2004-06-24 22:33:16 UTC
  • Revision ID: james.westby@ubuntu.com-20040624223316-534onzugaeeyq61j
Tags: upstream-1.1.9
ImportĀ upstreamĀ versionĀ 1.1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ident %W% %E% %Q%
 
2
###########################################################################
 
3
# Written 1999 by Andreas Mueller
 
4
###########################################################################
 
5
# Makefile for local dynamic configuration
 
6
###########################################################################
 
7
# This program is free software; you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation; either version 2, or (at your option)
 
10
# any later version.
 
11
#
 
12
# This program is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with this program; see the file COPYING.  If not, write to
 
19
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
20
###########################################################################
 
21
SRCROOT=        ..
 
22
RULESDIR=       RULES
 
23
include         $(SRCROOT)/$(RULESDIR)/rules.top
 
24
###########################################################################
 
25
 
 
26
all: clobber
 
27
        $(LN) -s $(SRCROOT)/include libschily
 
28
        $(LN) -s $(SRCROOT)/libscg/scg scg
 
29
        $(LN) -s $(SRCROOT)/incs/$(OARCH)/xconfig.h xconfig.h
 
30
        $(LN) -s $(SRCROOT)/libs/$(OARCH)/libschily.a libschily.a
 
31
        $(LN) -s $(SRCROOT)/libs/$(OARCH)/libscg.a libscg.a 
 
32
        $(LN) -s $(SRCROOT)/libs/$(OARCH)/librscg.a librscg.a
 
33
 
 
34
clobber:
 
35
        $(RM_F) -r libschily scg xconfig.h libschily.a libscg.a librscg.a
 
36
 
 
37
distclean: clobber
 
38
 
 
39
clean: clobber
 
40
 
 
41
OTHERTARGETS=   install ibins depend rmdep \
 
42
                TAGS tags rmtarget relink
 
43
 
 
44
$(OTHERTARGETS):
 
45
        @echo "$@: nothing to make"
 
46