mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-08 04:07:25 -04:00
21 lines
577 B
Plaintext
21 lines
577 B
Plaintext
$NetBSD: patch-ac,v 1.7 2013/06/16 09:08:52 ryoon Exp $
|
|
|
|
--- src/Makefile.in.orig 2012-12-03 17:59:19.000000000 +0000
|
|
+++ src/Makefile.in
|
|
@@ -74,12 +74,12 @@ OBJPPT=catppt.o pptparse.o $(COMMONOBJ)
|
|
# $(CC) -c $(CFLAGS) $*
|
|
all: @buildtargets@
|
|
catdoc: $(OBJ)
|
|
- $(CC) -o catdoc $(OBJ)
|
|
+ $(CC) -o catdoc $(OBJ) ${LIBS}
|
|
xls2csv: $(OBJXLS)
|
|
- $(CC) -o xls2csv $(OBJXLS) -lm
|
|
+ $(CC) -o xls2csv $(OBJXLS) -lm ${LIBS}
|
|
|
|
catppt: $(OBJPPT)
|
|
- $(CC) -o catppt $(OBJPPT) -lm
|
|
+ $(CC) -o catppt $(OBJPPT) -lm ${LIBS}
|
|
|
|
install: @installtargets@
|
|
install-catdoc:catdoc xls2csv catppt
|