Skip to content

Commit f2da4ed

Browse files
committed
Add $(LIBS) to the pgen link line.
1 parent 007bac3 commit f2da4ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Parser/Makefile.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ RANLIB= @RANLIB@
1414
AR= @AR@
1515

1616
DEFS= @DEFS@
17+
LIBS= @LIBS@
1718

1819

1920
# === Other things that are customizable but not by configure ===
@@ -56,7 +57,7 @@ add2lib: $(OBJS)
5657
touch add2lib
5758

5859
$(PGEN): $(PGENOBJS)
59-
$(CC) $(OPT) $(PGENOBJS) -o $(PGEN)
60+
$(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN)
6061

6162
clean:
6263
-rm -f *.o core *~ [@,#]* *.old *.orig *.rej add2lib

0 commit comments

Comments
 (0)