You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
437 B
20 lines
437 B
Index: Makefile.in |
|
--- Makefile.in.orig 2006-02-14 01:38:23 +0100 |
|
+++ Makefile.in 2006-02-14 08:12:17 +0100 |
|
@@ -9,6 +9,7 @@ |
|
LIBS=@LIBS@ |
|
CC=@CC@ |
|
CFLAGS=@CFLAGS@ |
|
+LDFLAGS=@LDFLAGS@ |
|
|
|
INSTALLCMD=@INSTALL@ |
|
|
|
@@ -37,7 +38,7 @@ |
|
${INSTALLCMD} -m 644 $(srcdir)/rzip.1 ${INSTALL_MAN}/man1/ |
|
|
|
rzip: $(OBJS) |
|
- $(CC) $(CFLAGS) -o rzip $(OBJS) $(LIBS) |
|
+ $(CC) $(LDFLAGS) -o rzip $(OBJS) $(LIBS) |
|
|
|
rzip.1: rzip.yo |
|
yodl2man -o rzip.1 rzip.yo
|
|
|