/[rtmk]/rtmk/libkern/Makefile.in
ViewVC logotype

Diff of /rtmk/libkern/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by jrydberg, Thu Jan 3 01:32:43 2002 UTC revision 1.3 by jrydberg, Sat Jan 5 00:08:30 2002 UTC
# Line 58  POST_INSTALL = : Line 58  POST_INSTALL = :
58  NORMAL_UNINSTALL = :  NORMAL_UNINSTALL = :
59  PRE_UNINSTALL = :  PRE_UNINSTALL = :
60  POST_UNINSTALL = :  POST_UNINSTALL = :
61    build_alias = @build_alias@
62    build_triplet = @build@
63  host_alias = @host_alias@  host_alias = @host_alias@
64  host_triplet = @host@  host_triplet = @host@
65  AS = @AS@  target_alias = @target_alias@
66    target_triplet = @target@
67    AR = @AR@
68  CC = @CC@  CC = @CC@
69  DLLTOOL = @DLLTOOL@  CPP = @CPP@
 ECHO = @ECHO@  
 EXEEXT = @EXEEXT@  
70  LD = @LD@  LD = @LD@
71  LIBGCC = @LIBGCC@  LIBGCC = @LIBGCC@
 LIBTOOL = @LIBTOOL@  
 LN_S = @LN_S@  
72  MAINT = @MAINT@  MAINT = @MAINT@
73  MAKEINFO = @MAKEINFO@  MAKEINFO = @MAKEINFO@
74  NCPUS = @NCPUS@  NCPUS = @NCPUS@
 OBJDUMP = @OBJDUMP@  
 OBJEXT = @OBJEXT@  
75  PACKAGE = @PACKAGE@  PACKAGE = @PACKAGE@
76  RANLIB = @RANLIB@  RANLIB = @RANLIB@
 STRIP = @STRIP@  
77  TARGET_ARCH = @TARGET_ARCH@  TARGET_ARCH = @TARGET_ARCH@
78  TARGET_MACHINE = @TARGET_MACHINE@  TARGET_MACHINE = @TARGET_MACHINE@
79  VERSION = @VERSION@  VERSION = @VERSION@
80  WITH_SMP = @WITH_SMP@  WITH_SMP = @WITH_SMP@
81    cross_linkable = @cross_linkable@
82  dep_theader_file = @dep_theader_file@  dep_theader_file = @dep_theader_file@
83  dep_tmake_file = @dep_tmake_file@  dep_tmake_file = @dep_tmake_file@
84  theader_file = @theader_file@  theader_file = @theader_file@
# Line 104  CPPFLAGS = @CPPFLAGS@ Line 102  CPPFLAGS = @CPPFLAGS@
102  LDFLAGS = @LDFLAGS@  LDFLAGS = @LDFLAGS@
103  LIBS = @LIBS@  LIBS = @LIBS@
104  libkern_a_LIBADD =  libkern_a_LIBADD =
105  libkern_a_OBJECTS =  index.$(OBJEXT) strcmp.$(OBJEXT) strcpy.$(OBJEXT) \  libkern_a_OBJECTS =  index.o strcmp.o strcpy.o strtoul.o printf.o \
106  strtoul.$(OBJEXT) printf.$(OBJEXT) strncmp.$(OBJEXT) memcpy.$(OBJEXT) \  strncmp.o memcpy.o strrchr.o basename.o memset.o strlen.o memmove.o \
107  strrchr.$(OBJEXT) basename.$(OBJEXT) memset.$(OBJEXT) strlen.$(OBJEXT) \  lprintf.o memchr.o ffs.o
 memmove.$(OBJEXT) lprintf.$(OBJEXT) memchr.$(OBJEXT) ffs.$(OBJEXT)  
 AR = ar  
108  CFLAGS = @CFLAGS@  CFLAGS = @CFLAGS@
109  COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)  COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)  
110  CCLD = $(CC)  CCLD = $(CC)
111  LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@  LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
112  HEADERS =  $(pkginclude_HEADERS)  HEADERS =  $(pkginclude_HEADERS)
113    
114  DIST_COMMON =  Makefile.am Makefile.in  DIST_COMMON =  Makefile.am Makefile.in
# Line 132  OBJECTS = $(libkern_a_OBJECTS) Line 127  OBJECTS = $(libkern_a_OBJECTS)
127    
128  all: all-redirect  all: all-redirect
129  .SUFFIXES:  .SUFFIXES:
130  .SUFFIXES: .S .c .lo .o .obj .s  .SUFFIXES: .S .c .o .s
131  $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)  $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
132          cd $(top_srcdir) && $(AUTOMAKE) --gnu libkern/Makefile          cd $(top_srcdir) && $(AUTOMAKE) --gnu libkern/Makefile
133    
# Line 150  distclean-noinstLIBRARIES: Line 145  distclean-noinstLIBRARIES:
145    
146  maintainer-clean-noinstLIBRARIES:  maintainer-clean-noinstLIBRARIES:
147    
 # FIXME: We should only use cygpath when building on Windows,  
 # and only if it is available.  
 .c.obj:  
         $(COMPILE) -c `cygpath -w $<`  
   
148  .s.o:  .s.o:
149          $(COMPILE) -c $<          $(COMPILE) -c $<
150    
# Line 163  maintainer-clean-noinstLIBRARIES: Line 153  maintainer-clean-noinstLIBRARIES:
153    
154  mostlyclean-compile:  mostlyclean-compile:
155          -rm -f *.o core *.core          -rm -f *.o core *.core
         -rm -f *.$(OBJEXT)  
156    
157  clean-compile:  clean-compile:
158    
# Line 172  distclean-compile: Line 161  distclean-compile:
161    
162  maintainer-clean-compile:  maintainer-clean-compile:
163    
 .s.lo:  
         $(LIBTOOL) --mode=compile $(COMPILE) -c $<  
   
 .S.lo:  
         $(LIBTOOL) --mode=compile $(COMPILE) -c $<  
   
 mostlyclean-libtool:  
         -rm -f *.lo  
   
 clean-libtool:  
         -rm -rf .libs _libs  
   
 distclean-libtool:  
   
 maintainer-clean-libtool:  
   
164  libkern.a: $(libkern_a_OBJECTS) $(libkern_a_DEPENDENCIES)  libkern.a: $(libkern_a_OBJECTS) $(libkern_a_DEPENDENCIES)
165          -rm -f libkern.a          -rm -f libkern.a
166          $(AR) cru libkern.a $(libkern_a_OBJECTS) $(libkern_a_LIBADD)          $(AR) cru libkern.a $(libkern_a_OBJECTS) $(libkern_a_LIBADD)
# Line 326  distclean-generic: Line 299  distclean-generic:
299    
300  maintainer-clean-generic:  maintainer-clean-generic:
301  mostlyclean-am:  mostlyclean-noinstLIBRARIES mostlyclean-compile \  mostlyclean-am:  mostlyclean-noinstLIBRARIES mostlyclean-compile \
302                  mostlyclean-libtool mostlyclean-tags mostlyclean-depend \                  mostlyclean-tags mostlyclean-depend mostlyclean-generic
                 mostlyclean-generic  
303    
304  mostlyclean: mostlyclean-am  mostlyclean: mostlyclean-am
305    
306  clean-am:  clean-noinstLIBRARIES clean-compile clean-libtool clean-tags \  clean-am:  clean-noinstLIBRARIES clean-compile clean-tags clean-depend \
307                  clean-depend clean-generic mostlyclean-am                  clean-generic mostlyclean-am
308    
309  clean: clean-am  clean: clean-am
310    
311  distclean-am:  distclean-noinstLIBRARIES distclean-compile \  distclean-am:  distclean-noinstLIBRARIES distclean-compile \
312                  distclean-libtool distclean-tags distclean-depend \                  distclean-tags distclean-depend distclean-generic \
313                  distclean-generic clean-am                  clean-am
         -rm -f libtool  
314    
315  distclean: distclean-am  distclean: distclean-am
316    
317  maintainer-clean-am:  maintainer-clean-noinstLIBRARIES \  maintainer-clean-am:  maintainer-clean-noinstLIBRARIES \
318                  maintainer-clean-compile maintainer-clean-libtool \                  maintainer-clean-compile maintainer-clean-tags \
319                  maintainer-clean-tags maintainer-clean-depend \                  maintainer-clean-depend maintainer-clean-generic \
320                  maintainer-clean-generic distclean-am                  distclean-am
321          @echo "This command is intended for maintainers to use;"          @echo "This command is intended for maintainers to use;"
322          @echo "it deletes files that may require special tools to rebuild."          @echo "it deletes files that may require special tools to rebuild."
323    
# Line 355  maintainer-clean: maintainer-clean-am Line 326  maintainer-clean: maintainer-clean-am
326  .PHONY: mostlyclean-noinstLIBRARIES distclean-noinstLIBRARIES \  .PHONY: mostlyclean-noinstLIBRARIES distclean-noinstLIBRARIES \
327  clean-noinstLIBRARIES maintainer-clean-noinstLIBRARIES \  clean-noinstLIBRARIES maintainer-clean-noinstLIBRARIES \
328  mostlyclean-compile distclean-compile clean-compile \  mostlyclean-compile distclean-compile clean-compile \
329  maintainer-clean-compile mostlyclean-libtool distclean-libtool \  maintainer-clean-compile uninstall-pkgincludeHEADERS \
 clean-libtool maintainer-clean-libtool uninstall-pkgincludeHEADERS \  
330  install-pkgincludeHEADERS tags mostlyclean-tags distclean-tags \  install-pkgincludeHEADERS tags mostlyclean-tags distclean-tags \
331  clean-tags maintainer-clean-tags distdir mostlyclean-depend \  clean-tags maintainer-clean-tags distdir mostlyclean-depend \
332  distclean-depend clean-depend maintainer-clean-depend info-am info \  distclean-depend clean-depend maintainer-clean-depend info-am info \

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26