Replace sorry excuse of an Imakefile with a *sane* version of same...

This commit is contained in:
espie 2000-03-31 22:01:13 +00:00
parent db3af33701
commit 789166e04c

View File

@ -1,49 +1,46 @@
*** Imakefile.orig Thu Jan 21 21:27:31 1993
--- Imakefile Sat Aug 3 14:30:53 1996
***************
*** 7,28 ****
/**/# Here's what to change to customize the installation...
/**/# Where do you want this stuff (if the defaults aren't okay)?
! BINDIR = /home/cur/bri/bin/mbins/${M}bin
! LIBDIR = /home/cur/bri/lib
! MANDIR = /home/cur/bri/Man
/**/# Where is the Xpm header and library files
/**/# This program needs the Xpm libraries written by Arnaud Le Hors.
/**/# it can be obtained by anonymous ftp to: export.lcs.mit.edu
/**/# and from many other sites.
! XPM_DIR = /home/cur/bri/Xstuff/Progs/bricons/xpm
XPM_INCLUDE_DIR = $(XPM_DIR)
! XPM_LIB_DIR = $(LIBDIR)
/**/# This is -g for debugging or -O for optimization (or nothing).
! CDEBUGFLAGS = -g
/**/# Nothing to change below here
--- 7,28 ----
/**/# Here's what to change to customize the installation...
/**/# Where do you want this stuff (if the defaults aren't okay)?
! BINDIR = /usr/X11R6/bin
! LIBDIR = /usr/X11R6/lib
! MANDIR = /usr/X11R6/man/man1
/**/# Where is the Xpm header and library files
/**/# This program needs the Xpm libraries written by Arnaud Le Hors.
/**/# it can be obtained by anonymous ftp to: export.lcs.mit.edu
/**/# and from many other sites.
! XPM_DIR = /usr/X11R6/include/X11
XPM_INCLUDE_DIR = $(XPM_DIR)
! XPM_LIB_DIR = /usr/X11R6/lib
/**/# This is -g for debugging or -O for optimization (or nothing).
! CDEBUGFLAGS = -O2
/**/# Nothing to change below here
--- Imakefile.orig Thu Jan 21 21:27:31 1993
+++ Imakefile Fri Mar 31 23:59:44 2000
@@ -4,40 +4,17 @@
/**/# MTI: Build srcs
/**/#
-/**/# Here's what to change to customize the installation...
-/**/# Where do you want this stuff (if the defaults aren't okay)?
-
-BINDIR = /home/cur/bri/bin/mbins/${M}bin
-LIBDIR = /home/cur/bri/lib
-MANDIR = /home/cur/bri/Man
-
-/**/# Where is the Xpm header and library files
-/**/# This program needs the Xpm libraries written by Arnaud Le Hors.
-/**/# it can be obtained by anonymous ftp to: export.lcs.mit.edu
-/**/# and from many other sites.
-
-XPM_DIR = /home/cur/bri/Xstuff/Progs/bricons/xpm
-XPM_INCLUDE_DIR = $(XPM_DIR)
-XPM_LIB_DIR = $(LIBDIR)
-
-/**/# This is -g for debugging or -O for optimization (or nothing).
-
-CDEBUGFLAGS = -g
-
/**/# Nothing to change below here
DEPLIBS = XawClientDepLibs
-EXTRA_INCLUDES = -I$(XPM_INCLUDE_DIR)
-LOCAL_LIBRARIES = -L$(XPM_LIB_DIR) -lXpm XawClientLibs
+EXTRA_INCLUDES = -I$(XPMINCDIR)/X11
+LOCAL_LIBRARIES = -L$(XPMLIBDIR) -lXpm XawClientLibs
SRCS = main.c \
action.c \
buttons.c \
gen.c \
- parser.c \
- gen.h \
- trans.h \
- widgets.h
+ parser.c
OBJS = main.o \
buttons.o \