File: Imakefile

package info (click to toggle)
vnc4 4.1.1%2BX4.3.0-31
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 171,548 kB
  • ctags: 288,231
  • sloc: ansic: 2,205,256; cpp: 56,016; sh: 38,092; pascal: 13,773; asm: 12,656; tcl: 9,182; lisp: 7,831; perl: 3,338; makefile: 2,957; yacc: 2,902; objc: 2,698; xml: 2,614; python: 2,383; lex: 1,477; awk: 901; csh: 58; sed: 50
file content (53 lines) | stat: -rw-r--r-- 1,587 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
XCOMM $XConsortium: Imakefile,v 1.17 93/08/17 20:49:32 rws Exp $
XCOMM $XFree86: xc/programs/xedit/Imakefile,v 1.24 2002/10/01 14:31:46 alanh Exp $

#ifndef OS2Architecture
#include "lisp/lisp.cf"

#if BuildSharedLispModules
CCOPTIONS	= -fpic
DLLIB		= DlLibrary
LOCAL_LDFLAGS	= -Xlinker -E
#endif

#define IHaveSubdirs
#define PassCDebugFlags CDEBUGFLAGS="$(CDEBUGFLAGS)"

        SUBDIRS = lisp
       LISPLIBS = -Llisp -llisp -Llisp/mp -lmp -Llisp/re -lre
       LISP_SRC = lisp.c
       LISP_OBJ = lisp.o
#endif

        DEPLIBS = XawClientDepLibs $(SUBDIRS)
LOCAL_LIBRARIES = $(LISPLIBS) XawClientLibs $(DLLIB)
  SYS_LIBRARIES = MathLibrary
#if defined(LynxOSArchitecture) || defined(SVR3Architecture) || defined(LinuxArchitecture)
        RP_SRCS = realpath.c
        RP_OBJS = realpath.o
     RP_DEFINES = -DNEED_REALPATH
#endif
#if !HasStrcasecmp
   STRCCMP_SRCS = strcasecmp.c
   STRCCMP_OBJS = strcasecmp.o
STRCCMP_DEFINES = -DNEED_STRCASECMP
#endif
       SYS_SRCS = $(RP_SRCS) $(STRCCMP_SRCS)
       SYS_OBJS = $(RP_OBJS) $(STRCCMP_OBJS)
    SYS_DEFINES = $(RP_DEFINES) $(STRCCMP_DEFINES)
        DEFINES = $(SIGNAL_DEFINES) $(SYS_DEFINES)
       INCLUDES = -I. -Ilisp/re -I- $(MISC_INCLUDES)

           SRCS = xedit.c commands.c util.c $(SYS_SRCS) ispell.c options.c \
		  hook.c $(LISP_SRC)
           OBJS = xedit.o commands.o util.o $(SYS_OBJS) ispell.o options.o \
		  hook.o $(LISP_OBJ)

#ifdef IHaveSubdirs
ForceSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))
#endif

ComplexProgramTarget(xedit)
InstallAppDefaults(Xedit)
InstallAppDefaultsLong(Xedit-color,Xedit-color)