blob: 325d200a05124a7627a8369241d4055c4b62bc3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# -*-Makefile-*-, or close enough
AUTOMAKE_OPTIONS = 1.6 foreign
# Only build the library when the system doesn't already have GNU glob.
if USE_LOCAL_GLOB
noinst_LIBRARIES = libglob.a
endif
libglob_a_SOURCES = glob.c glob.h fnmatch.c fnmatch.h
EXTRA_DIST = COPYING.LIB Makefile.ami SCOPTIONS SMakefile \
configure.bat
|