blob: 1a30abaf505ed376de457c4126460f6191ad67b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
- Avoid creating cat pages (pointless and would need groff)
- Do not generate the PDF reference manual which is just an
amalgamation of all man pages and would add a ghostscript dependency
- Do not install a man page for the license; LICENSE_FILE is already
part of the package
--- Makefile.in.orig 2014-03-05 00:13:45 UTC
+++ Makefile.in
@@ -588,7 +588,7 @@ bin/test_user$(EXEEXT): $(test_user_obj) .bin lib/libf
$(LIBTOOL) --mode=link --tag=CC $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ \
$(test_user_obj) lib/libfstrcmp.la $(LDFLAGS) $(LIBS)
-all: all-bin all-doc
+all: all-bin
all-bin: bin/fstrcmp$(EXEEXT) bin/test_prelude$(EXEEXT) bin/test_user$(EXEEXT)
@@ -657,7 +657,7 @@ distclean-files:
distclean-directories:
rm -rf bin fstrcmp/.libs lib/.libs lib/ac/.libs test_user/.libs
-install: install-bin install-doc install-include install-libdir install-man
+install: install-bin install-include install-libdir install-man
install-bin: $(bindir)/fstrcmp$(EXEEXT)
@@ -674,7 +674,7 @@ install-include: $(includedir)/fstrcmp.h
#
install-libdir: $(libdir)/libfstrcmp.la $(libdir)/pkgconfig/fstrcmp.pc
-install-man: $(mandir)/man1/fstrcmp.1 $(mandir)/man1/fstrcmp_license.1 \
+install-man: $(mandir)/man1/fstrcmp.1 \
$(mandir)/man3/fmemcmp.3 $(mandir)/man3/fmemcmpi.3 \
$(mandir)/man3/fstrcasecmp.3 $(mandir)/man3/fstrcasecmpi.3 \
$(mandir)/man3/fstrcmp.3 $(mandir)/man3/fstrcmpi.3 \
|