Add $(LIBS) to the pgen link line.

This commit is contained in:
Guido van Rossum 1998-04-09 19:10:38 +00:00
parent 007bac3b0b
commit f2da4ed48b
1 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ RANLIB= @RANLIB@
AR= @AR@ AR= @AR@
DEFS= @DEFS@ DEFS= @DEFS@
LIBS= @LIBS@
# === Other things that are customizable but not by configure === # === Other things that are customizable but not by configure ===
@ -56,7 +57,7 @@ add2lib: $(OBJS)
touch add2lib touch add2lib
$(PGEN): $(PGENOBJS) $(PGEN): $(PGENOBJS)
$(CC) $(OPT) $(PGENOBJS) -o $(PGEN) $(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN)
clean: clean:
-rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2lib -rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2lib