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 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
CC=@CC@
top_srcdir=@top_srcdir@
srcdir=@srcdir@
VPATH=@srcdir@
@SET_MAKE@
include ../Make.rules
.c.o:
$(CC) $(CFLAGS) $(CPPFLAGS) -c $<
libsupp.a: $(LIB_OBJS)
ar rc libsupp.a $(LIB_OBJS)
all:
@echo "Running make from top level directory."
cd ../; $(MAKE) all
lib: libsupp.a
clean:
rm -f *.o *.save libsupp.a core *~
depend:
makedepend $(CPPFLAGS) -Y *.c 2>/dev/null
makedepend $(CPPFLAGS) -Y -fMakefile.in *.c 2>/dev/null
# Dependancies written below
# DO NOT DELETE
fnmatch.o: ../include/conf.h ../include/version.h ../config.h
fnmatch.o: ../include/default_paths.h ../include/options.h
fnmatch.o: ../include/libsupp.h
getopt.o: ../include/conf.h ../include/version.h ../config.h
getopt.o: ../include/default_paths.h ../include/options.h getopt.h
getopt1.o: ../include/conf.h ../include/version.h ../config.h
getopt1.o: ../include/default_paths.h ../include/options.h getopt.h
glob.o: ../include/conf.h ../include/version.h ../config.h
glob.o: ../include/default_paths.h ../include/options.h ../include/libsupp.h
pwgrent.o: ../include/conf.h ../include/version.h ../config.h
pwgrent.o: ../include/default_paths.h ../include/options.h
strsep.o: ../include/conf.h ../include/version.h ../config.h
strsep.o: ../include/default_paths.h ../include/options.h
strsep.o: ../include/libsupp.h
vsnprintf.o: ../include/conf.h ../include/version.h ../config.h
vsnprintf.o: ../include/default_paths.h ../include/options.h
vsnprintf.o: ../include/libsupp.h
|