We haven't for a long time (if ever) had to call g++ with -lg++ to compile

a program so remove it and fix the build for all -current machines.
This commit is contained in:
Steve Price 1999-09-27 02:03:53 +00:00
parent 543cfe27b0
commit fedb27dedb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=21977

View file

@ -1,5 +1,5 @@
--- Makefile.orig Thu May 14 16:36:54 1998
+++ Makefile Thu May 14 16:37:14 1998
--- Makefile.orig Fri Apr 15 20:23:55 1994
+++ Makefile Sun Sep 26 09:42:57 1999
@@ -15,7 +15,7 @@
OBJS = code.o dfa.o main.o parser.o actions.o scanner.o substr.o\
translate.o
@ -9,3 +9,12 @@
CFLAGS = -O2 -Wall -I.
YFLAGS = -d
LDFLAGS =
@@ -30,7 +30,7 @@
mv -f y.tab.c parser.cc
re2c: $(OBJS)
- $(CC) -o $@ $(OBJS) $(LDFLAGS) -lg++
+ $(CC) -o $@ $(OBJS) $(LDFLAGS) #-lg++
#
# generated with "gcc -I. -MM -x c++ *.cc *.y *.re"