1999-09-27 16:54:27 +00:00
|
|
|
*** Makefile.orig Thu Feb 25 23:17:38 1999
|
|
|
|
--- Makefile Sat Sep 25 17:37:29 1999
|
1997-10-29 03:20:54 +00:00
|
|
|
***************
|
1999-09-27 16:54:27 +00:00
|
|
|
*** 1,32 ****
|
1997-10-29 03:20:54 +00:00
|
|
|
# Makefile for LinCity (c) I J Peters 1995,1996.
|
|
|
|
|
|
|
|
# This is where the binaries for LinCity will be placed.
|
|
|
|
! LC_BINDIR = /usr/local/bin
|
|
|
|
# for solaris you might choose...
|
|
|
|
# LC_BINDIR = /opt/lcity/bin
|
|
|
|
|
|
|
|
# This is where the library/data files will be placed.
|
|
|
|
! LC_LIBDIR = /usr/local/lib/lincity
|
|
|
|
# for solaris you might choose...
|
|
|
|
# LC_LIBDIR = /opt/lcity/lib
|
|
|
|
|
|
|
|
# export LC_LIBDIR
|
|
|
|
|
|
|
|
# This is where the manpage will be placed.
|
|
|
|
! LC_MANDIR = /usr/local/man/man6
|
|
|
|
LC_MANSUF = 6
|
|
|
|
# for solaris you might choose...
|
|
|
|
# LC_LIBDIR = /opt/lcity/man/man6
|
1999-09-27 16:54:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
# CC = egcs
|
|
|
|
! CC = gcc
|
|
|
|
|
|
|
|
! # EXTRA_OPTS = -fomit-frame-pointer -fstrength-reduce -ffast-math
|
|
|
|
# EXTRA_OPTS = -fstrength-reduce -ffast-math
|
|
|
|
WARN_OPTS = -Wall -Wpointer-arith -Wcast-align -Winline
|
|
|
|
# DEBUG_OPTS =-g
|
|
|
|
! CFLAGS = -O2 $(DEBUG_OPTS) $(EXTRA_OPTS) $(WARN_OPTS) -DLIBDIR=\"$(LC_LIBDIR)\"
|
|
|
|
# -fno-strength-reduce
|
|
|
|
# PROFF = -pg
|
|
|
|
# PROFL = -lc
|
|
|
|
--- 1,32 ----
|
1997-10-29 03:20:54 +00:00
|
|
|
# Makefile for LinCity (c) I J Peters 1995,1996.
|
|
|
|
|
|
|
|
# This is where the binaries for LinCity will be placed.
|
|
|
|
! LC_BINDIR = ${PREFIX}/bin
|
|
|
|
# for solaris you might choose...
|
|
|
|
# LC_BINDIR = /opt/lcity/bin
|
|
|
|
|
|
|
|
# This is where the library/data files will be placed.
|
|
|
|
! LC_LIBDIR = ${PREFIX}/lib/lincity
|
|
|
|
# for solaris you might choose...
|
|
|
|
# LC_LIBDIR = /opt/lcity/lib
|
|
|
|
|
|
|
|
# export LC_LIBDIR
|
|
|
|
|
|
|
|
# This is where the manpage will be placed.
|
|
|
|
! LC_MANDIR = ${PREFIX}/man/man6
|
|
|
|
LC_MANSUF = 6
|
|
|
|
# for solaris you might choose...
|
|
|
|
# LC_LIBDIR = /opt/lcity/man/man6
|
1999-09-27 16:54:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
# CC = egcs
|
|
|
|
! # CC = gcc
|
|
|
|
|
|
|
|
! EXTRA_OPTS = -fomit-frame-pointer -fstrength-reduce -ffast-math
|
|
|
|
# EXTRA_OPTS = -fstrength-reduce -ffast-math
|
1997-10-29 03:20:54 +00:00
|
|
|
WARN_OPTS = -Wall -Wpointer-arith -Wcast-align -Winline
|
|
|
|
# DEBUG_OPTS =-g
|
1999-09-27 16:54:27 +00:00
|
|
|
! CFLAGS += $(EXTRA_OPTS) -DLIBDIR=\"$(LC_LIBDIR)\" -I${X11BASE}/include
|
1997-10-29 03:20:54 +00:00
|
|
|
# -fno-strength-reduce
|
|
|
|
# PROFF = -pg
|
|
|
|
# PROFL = -lc
|