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.

32 lines
1.0 KiB

  1. ##
  2. ## Copyright (C) 2004-2007 Free Software Foundation, Inc.
  3. ##
  4. ## This program is free software; you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation; either version 2 of the License, or
  7. ## (at your option) any later version.
  8. ##
  9. ## This program is distributed in the hope that it will be useful,
  10. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ## GNU General Public License for more details.
  13. ##
  14. ## Not using gnulib-tool, at least for now. It is likely that we won't
  15. ## need anything else from Gnulib than getopt_long().
  16. noinst_LIBRARIES = libgnu.a
  17. libgnu_a_SOURCES =
  18. libgnu_a_DEPENDENCIES = $(LIBOBJS)
  19. libgnu_a_LIBADD = $(LIBOBJS)
  20. EXTRA_DIST = getopt.in.h getopt.c getopt1.c getopt_int.h
  21. BUILT_SOURCES = $(GETOPT_H)
  22. MOSTLYCLEANFILES = getopt.h getopt.h-t
  23. getopt.h: getopt.in.h
  24. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  25. cat $(srcdir)/getopt.in.h; \
  26. } > $@-t
  27. mv -f $@-t $@