.
[gnulib.git] / lib / Makefile.am
index a0101d4..f58efe5 100644 (file)
@@ -20,19 +20,32 @@ libfu_a_DEPENDENCIES = $(libfu_a_LIBADD)
 
 noinst_HEADERS = argmatch.h backupfile.h closeout.h \
 dirname.h error.h exclude.h filemode.h fnmatch.h fsusage.h \
-getdate.h getline.h getopt.h group-member.h human.h lchown.h long-options.h \
+getdate.h getline.h getopt.h getpagesize.h \
+group-member.h human.h lchown.h long-options.h \
 makepath.h modechange.h mountlist.h hash.h path-concat.h pathmax.h \
 posixtm.h quotearg.h regex.h safe-read.h same.h save-cwd.h \
 savedir.h strverscmp.h \
 version-etc.h xalloc.h xstrtol.h
 
 BUILT_SOURCES = getdate.c lstat.c stat.c
+MAINTAINERCLEANFILES = $(BUILT_SOURCES)
+DISTCLEANFILES = lstat.c stat.c
 
 EXTRA_DIST = xstat.in
 lstat.c: xstat.in
-       sed -e '/@IGNORE@/d' -e 's/@xstat@/lstat/g' $(srcdir)/xstat.in > $@-t
+       sed \
+         -e '/@IGNORE@/d' \
+         -e 's/@xstat@/lstat/g' \
+         -e '/_LSTAT_ONLY@/d' \
+         -e '/@BEGIN_STAT_ONLY@/,/@END_STAT_ONLY@/d' \
+         $(srcdir)/xstat.in > $@-t
        mv $@-t $@
 
 stat.c: xstat.in
-       sed -e '/@IGNORE@/d' -e 's/@xstat@/stat/g' $(srcdir)/xstat.in > $@-t
+       sed \
+         -e '/@IGNORE@/d' \
+         -e 's/@xstat@/stat/g' \
+         -e '/_STAT_ONLY@/d' \
+         -e '/@BEGIN_LSTAT_ONLY@/,/@END_LSTAT_ONLY@/d' \
+         $(srcdir)/xstat.in > $@-t
        mv $@-t $@