Small modification to respect $(CXX).
This commit is contained in:
parent
10490fe70b
commit
9d118e4481
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=26280
2 changed files with 14 additions and 6 deletions
|
@ -1,8 +1,10 @@
|
|||
--- Makefile.orig Wed Jul 21 21:39:27 1999
|
||||
+++ Makefile Fri Feb 18 23:18:40 2000
|
||||
@@ -2,9 +2,12 @@
|
||||
@@ -1,10 +1,13 @@
|
||||
# anyone waht to clean this up for me, and perhaps make it use autoconf?
|
||||
|
||||
CC = g++
|
||||
-CC = g++
|
||||
+CC = $(CXX)
|
||||
RIODIR = rio107
|
||||
-CFLAGS = -Wall -O1 -I/usr/X11R6/include/qt -I/usr/include/kde -I/usr/include/qt -I$(RIODIR)
|
||||
-# CFLAGS = -DDEBUG_MESSAGES -Wall -O1 -I/usr/X11R6/include/qt -I/usr/include/kde -I/usr/include/qt -I$(RIODIR)
|
||||
|
|
|
@ -1,16 +1,22 @@
|
|||
*** Makefile.orig Fri Apr 2 19:52:27 1999
|
||||
--- Makefile Fri Apr 2 19:51:11 1999
|
||||
***************
|
||||
*** 7,13 ****
|
||||
CC = g++
|
||||
*** 4,13 ****
|
||||
VERSION = 0.7.1
|
||||
|
||||
# Your C++ compiler
|
||||
! CC = g++
|
||||
|
||||
# Flags to pass to the C++ compiler
|
||||
! FLAGS = -O -Wall
|
||||
|
||||
# Your tar
|
||||
TAR = tar
|
||||
--- 7,13 ----
|
||||
CC = g++
|
||||
--- 4,13 ----
|
||||
VERSION = 0.7.1
|
||||
|
||||
# Your C++ compiler
|
||||
! CC = $(CXX)
|
||||
|
||||
# Flags to pass to the C++ compiler
|
||||
! FLAGS = -DPREFIX=\"${PREFIX}\" ${CFLAGS} -L /usr/X11R6/lib -I /usr/X11R6/include
|
||||
|
|
Loading…
Reference in a new issue