mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-17 12:41:05 +03:00
38 lines
586 B
Plaintext
38 lines
586 B
Plaintext
Description:
|
|
Process command line arguments.
|
|
|
|
Files:
|
|
lib/getopt.in.h
|
|
lib/getopt.c
|
|
lib/getopt1.c
|
|
lib/getopt_int.h
|
|
m4/getopt.m4
|
|
|
|
Depends-on:
|
|
gettext-h
|
|
unistd
|
|
|
|
configure.ac:
|
|
gl_GETOPT
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += $(GETOPT_H)
|
|
|
|
# We need the following in order to create <getopt.h> when the system
|
|
# doesn't have one that works with the given compiler.
|
|
getopt.h: getopt.in.h
|
|
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
|
|
cat $(srcdir)/getopt.in.h; \
|
|
} > $@-t
|
|
mv -f $@-t $@
|
|
MOSTLYCLEANFILES += getopt.h getopt.h-t
|
|
|
|
Include:
|
|
<getopt.h>
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
all, glibc
|