~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to kscd/makefiles/Imakefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**/# @(#)Imakefile     1.16 04 Jun 1995
 
2
 
 
3
/**/# Set this to the manual section where you want to install workmandb.man
 
4
DBMANSECTION = 5
 
5
 
 
6
/**/#
 
7
/**/# Uncomment the following if you want fast database lookups using the
 
8
/**/# Berkeley libdb code.  You can find libdb on ftp.cs.berkeley.edu in the
 
9
/**/# /ucb/4bsd directory.  Make sure you adjust the last part of DBCFLAGS
 
10
/**/# to match your system type as listed in libdb's PORT directory.
 
11
/**/#
 
12
 
 
13
/**/#DBCFLAGS = -DLIBDB -Idb.1.85/PORT/include -Idb.1.85/PORT/sunos.5.2
 
14
/**/#DBLIB = db.1.85/PORT/sunos.5.2/libdb.a
 
15
 
 
16
/**/# And you shouldn't need to touch anything below this.
 
17
 
 
18
 
 
19
#include <XView.tmpl>
 
20
#include "WorkMan.tmpl"
 
21
 
 
22
#define HasInfoFiles YES
 
23
 
 
24
DEFINES = $(LOCALDEFS)
 
25
DEPLIBS = XViewClientDepLibs
 
26
 
 
27
#ifdef SonyArchitecture
 
28
LOCAL_LIBRARIES = XViewClientLibs $(DBLIB) -lCD
 
29
#else
 
30
#if defined(__bsdi__) || defined(i386Bsdi)
 
31
/* LOCALDEFS=-DSOUNDBLASTER */ /* turns on some different volume code */
 
32
LOCAL_LIBRARIES = XViewClientLibs $(DBLIB) -lcdrom -lrpc -lcompat
 
33
CFLAGS += -fwritable-strings
 
34
#else
 
35
LOCAL_LIBRARIES = XViewClientLibs $(DBLIB)
 
36
#endif
 
37
#endif
 
38
 
 
39
INFOFILES = workman.info
 
40
 
 
41
SRCS = cdinfo.c database.c display.c setup.c ui_cdinfo.c plat_sun.c cdrom.c \
 
42
        plat_hpux.c plat_ultrix.c plat_linux.c plat_news.c plat_bsd386.c \
 
43
        plat_freebsd.c plat_osf1.c index.c \
 
44
        workman_stubs.c scsi.c drv_toshiba.c drv_sony.c plat_svr4.c
 
45
 
 
46
OBJS = cdinfo.o database.o display.o setup.o ui_cdinfo.o plat_sun.o cdrom.o \
 
47
        plat_hpux.o plat_ultrix.o plat_linux.o plat_news.o plat_bsd386.o \
 
48
        plat_freebsd.o plat_osf1.o index.o \
 
49
        workman_stubs.o scsi.o drv_toshiba.o drv_sony.o plat_svr4.o
 
50
 
 
51
ComplexProgramTarget(workman)
 
52
 
 
53
InstallSpecialManPage(workmandb,$(DBMANSECTION))
 
54
 
 
55
#ifdef UltrixArchitecture
 
56
SpecialObjectRule(database.o,database.c,-Olimit 600);
 
57
#endif
 
58
 
 
59
SpecialObjectRule(index.o,index.c,$(DBCFLAGS));
 
60
 
 
61
#include <XView.prog>
 
62