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
|
/*
* Possible additions to DEFINES (with their hardcoded defaults)
*
* -DDEFEDITOR=\"/usr/ucb/vi\" - path to default editor
* -DPRINTCMD=\"/usr/ucb/lpr\" - path to send file to printer
* -DTILDE_EXPANSION - perform ~ expansion on filenames
*/
DEFINES = -DHELPFILE=\"${LIBDIR}/xless.help\" -DTILDE_EXPANSION
SRCS = help.c init.c popup.c util.c callbacks.c window.c main.c \
actions.c functions.c
OBJS = help.o init.o popup.o util.o callbacks.o window.o main.o \
actions.o functions.o
INCLUDES = -Iregexp
LOCAL_LIBRARIES = -Lregexp -lregexp XawClientLibs
DEPLIBS = ./regexp/libregexp.a XawClientDepLibs
SUBDIRS = regexp
#define IHaveSubdirs 1
#ifndef PassCDebugFlags
#define PassCDebugFlags
#endif
MakeSubdirs($(SUBDIRS))
ComplexProgramTarget(xless)
InstallNonExec(xless.help, $(LIBDIR))
InstallAppDefaults(XLess)
#if ProjectX >= 5
/*
* Only users of X11R5 (and beyond) can automatically use the color defaults
*/
InstallAppDefaultsLong(XLess-co,XLess-color)
#endif
|