Commit f2da4ed4 authored by Guido van Rossum's avatar Guido van Rossum

Add $(LIBS) to the pgen link line.

parent 007bac3b
......@@ -14,6 +14,7 @@ RANLIB= @RANLIB@
AR= @AR@
DEFS= @DEFS@
LIBS= @LIBS@
# === Other things that are customizable but not by configure ===
......@@ -56,7 +57,7 @@ add2lib: $(OBJS)
touch add2lib
$(PGEN): $(PGENOBJS)
$(CC) $(OPT) $(PGENOBJS) -o $(PGEN)
$(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN)
clean:
-rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2lib
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment