# Makefile for vacall #### Start of system configuration section. #### HOST = i386-unknown-gnu CPU = i386 OS = gnu # Directories used by "make": srcdir = . # Directories used by "make install": prefix = local_prefix = /usr/local exec_prefix = ${prefix} libdir = ${exec_prefix}/lib includedir = ${prefix}/include mandir = ${prefix}/man datadir = ${prefix}/share htmldir = $(datadir)/html # Programs used by "make": CC = cc CFLAGS = -fno-common CPP = cc -E INCLUDES = -I. -I$(srcdir) ASPFLAGS = `if test true = true; then echo '-DASM_UNDERSCORE'; fi` LIBTOOL = $(SHELL) $(top_builddir)/libtool LIBTOOL_COMPILE = $(LIBTOOL) --mode=compile LIBTOOL_LINK = $(LIBTOOL) --mode=link LIBTOOL_INSTALL = $(LIBTOOL) --mode=install LIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall AR = ar AR_FLAGS = rc RANLIB = ranlib MV = mv LN = ln RM = rm -f # Programs used by "make install": INSTALL = /usr/bin/install -c -o root -g wheel INSTALL_PROGRAM = install -s -o root -g wheel -m 555 INSTALL_DATA = install -o root -g wheel -m 444 #### End of system configuration section. #### SHELL = /bin/sh # Needed by $(LIBTOOL). top_builddir = . OBJECTS = vacall.lo misc.lo structcpy.lo all : $(OBJECTS) libvacall.la vacall_r.h vacall.lo : vacall-$(CPU).lo $(RM) vacall.lo vacall.o $(LN) vacall-$(CPU).lo vacall.lo if test -f vacall-$(CPU).o; then $(LN) vacall-$(CPU).o vacall.o; fi vacall-i386.lo : vacall-i386.s $(LIBTOOL_COMPILE) $(CC) -x none -c vacall-i386.s vacall-i386.s : $(srcdir)/vacall-i386-macro.S $(CPP) $(ASPFLAGS) $(srcdir)/vacall-i386-macro.S | grep -v '^ *#line' | grep -v '^#ident' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,% ,%,g' -e 's,\. ,.,g' > vacall-i386.s vacall-sparc.lo : vacall-sparc.s $(LIBTOOL_COMPILE) $(CC) -x none -c vacall-sparc.s vacall-sparc.s : $(srcdir)/vacall-sparc.S $(CPP) $(ASPFLAGS) $(srcdir)/vacall-sparc.S | grep -v '^ *#line' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,//.*$$,,' -e 's,\$$,#,g' > vacall-sparc.s vacall-sparc64.lo : vacall-sparc64.s $(LIBTOOL_COMPILE) $(CC) -x none -c vacall-sparc64.s vacall-sparc64.s : $(srcdir)/vacall-sparc64.S $(CPP) $(ASPFLAGS) $(srcdir)/vacall-sparc64.S | grep -v '^ *#line' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,//.*$$,,' -e 's,\$$,#,g' > vacall-sparc64.s vacall-m68k.lo : vacall-m68k.s $(LIBTOOL_COMPILE) $(CC) -x none -c vacall-m68k.s vacall-m68k.s : $(srcdir)/vacall-m68k.mit.S $(srcdir)/vacall-m68k.mot.s $(CPP) $(ASPFLAGS) $(srcdir)/vacall-m68k.mit.S | grep -v '^ *#line' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,//.*$$,,' | if test true = true; then sed -e 's/\$$//g'; else sed -e 's/\$$/%/g'; fi > vacall-m68k.s vacall-mips.lo : vacall-mips.s $(LIBTOOL_COMPILE) $(CC) -x none -c vacall-mips.s vacall-mips.s : $(srcdir)/vacall-mips.S $(CPP) $(ASPFLAGS) $(srcdir)/vacall-mips.S | grep -v '^ *#line' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,//.*$$,,' > vacall-mips.s vacall-mipsn32.lo : vacall-mipsn32.s $(LIBTOOL_COMPILE) $(CC) -x none -c vacall-mipsn32.s vacall-mipsn32.s : $(srcdir)/vacall-mipsn32.S $(CPP) $(ASPFLAGS) $(srcdir)/vacall-mipsn32.S | grep -v '^ *#line' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,//.*$$,,' > vacall-mipsn32.s vacall-mips64.lo : vacall-mips64.s $(LIBTOOL_COMPILE) $(CC) -x none -c vacall-mips64.s vacall-mips64.s : $(srcdir)/vacall-mips64.S $(CPP) $(ASPFLAGS) $(srcdir)/vacall-mips64.S | grep -v '^ *#line' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,//.*$$,,' > vacall-mips64.s vacall-alpha.lo : $(srcdir)/vacall-alpha.s $(LIBTOOL_COMPILE) $(CC) -x none -c $(srcdir)/vacall-alpha.s vacall-hppa.lo : $(srcdir)/vacall-hppa.s $(LIBTOOL_COMPILE) $(CC) -x none -c $(srcdir)/vacall-hppa.s vacall-s390.lo : $(srcdir)/vacall-s390.s $(LIBTOOL_COMPILE) $(CC) -x none -c $(srcdir)/vacall-s390.s vacall-arm.lo : vacall-arm.s $(LIBTOOL_COMPILE) $(CC) -x none -c vacall-arm.s vacall-arm.s : $(srcdir)/vacall-arm.S $(CPP) $(ASPFLAGS) $(srcdir)/vacall-arm.S | grep -v '^ *#line' | grep -v '^#' | sed -e 's,% ,%,g' -e 's,//,@,g' -e 's,\$$,#,g' > vacall-arm.s vacall-rs6000.lo : $(srcdir)/vacall-rs6000-aix.old.s $(srcdir)/vacall-rs6000-aix.new.s $(srcdir)/vacall-rs6000-sysv4.s $(srcdir)/vacall-rs6000-linux.s $(srcdir)/vacall-rs6000-macos.s case "$(OS)" in \ aix3*) syntax=aix.old;; \ aix*) syntax=aix.new;; \ linux*) syntax=linux;; \ macos* | darwin*) syntax=macos;; \ *) syntax=sysv4;; \ esac; \ $(LIBTOOL_COMPILE) $(CC) -x none -c $(srcdir)/vacall-rs6000-$${syntax}.s ; \ cp vacall-rs6000-$${syntax}.lo vacall-rs6000.lo ; rm -f vacall-rs6000-$${syntax}.lo ; \ if test -f vacall-rs6000-$${syntax}.o; then mv vacall-rs6000-$${syntax}.o vacall-rs6000.o; fi vacall-m88k.lo : $(srcdir)/vacall-m88k.s $(LIBTOOL_COMPILE) $(CC) -x none -c $(srcdir)/vacall-m88k.s vacall-convex.lo : $(srcdir)/vacall-convex.s $(LIBTOOL_COMPILE) $(CC) -x none -c $(srcdir)/vacall-convex.s vacall-ia64.lo : $(srcdir)/vacall-ia64.s $(LIBTOOL_COMPILE) $(CC) -x none -c $(srcdir)/vacall-ia64.s vacall-x86_64.lo : $(srcdir)/vacall-x86_64.s $(LIBTOOL_COMPILE) $(CC) -x none -c $(srcdir)/vacall-x86_64.s misc.lo : $(srcdir)/misc.c vacall_r.h config.h $(LIBTOOL_COMPILE) $(CC) $(CFLAGS) $(INCLUDES) -c $(srcdir)/misc.c structcpy.lo : $(srcdir)/structcpy.c $(LIBTOOL_COMPILE) $(CC) $(CFLAGS) -c $(srcdir)/structcpy.c libvacall.la : $(OBJECTS) $(LIBTOOL_LINK) $(CC) -o libvacall.la -rpath $(libdir) $(OBJECTS) # Installs the library and include files only. Typically called with only # $(libdir) and $(includedir) - don't use $(prefix) and $(exec_prefix) here. install-lib : all force if [ ! -d $(includedir) ] ; then mkdir $(includedir) ; fi $(INSTALL_DATA) vacall_r.h $(includedir)/vacall_r.h install : all force if [ ! -d $(DESTDIR)$(prefix) ] ; then mkdir $(DESTDIR)$(prefix) ; fi # if [ ! -d $(DESTDIR)$(exec_prefix) ] ; then mkdir $(DESTDIR)$(exec_prefix) ; fi # if [ ! -d $(DESTDIR)$(libdir) ] ; then mkdir $(DESTDIR)$(libdir) ; fi # $(LIBTOOL_INSTALL) $(INSTALL_DATA) libvacall.la $(DESTDIR)$(libdir)/libvacall.la if [ ! -d $(DESTDIR)$(includedir) ] ; then mkdir $(DESTDIR)$(includedir) ; fi $(INSTALL_DATA) vacall_r.h $(DESTDIR)$(includedir)/vacall_r.h # if [ ! -d $(DESTDIR)$(mandir) ] ; then mkdir $(DESTDIR)$(mandir) ; fi # if [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then mkdir $(DESTDIR)$(mandir)/man3 ; fi # $(INSTALL_DATA) $(srcdir)/vacall_r.3 $(DESTDIR)$(mandir)/man3/vacall_r.3 # if [ ! -d $(DESTDIR)$(datadir) ] ; then mkdir $(DESTDIR)$(datadir) ; fi # if [ ! -d $(DESTDIR)$(htmldir) ] ; then mkdir $(DESTDIR)$(htmldir) ; fi # $(INSTALL_DATA) $(srcdir)/vacall_r.html $(DESTDIR)$(htmldir)/vacall_r.html installdirs : force if [ ! -d $(DESTDIR)$(prefix) ] ; then mkdir $(DESTDIR)$(prefix) ; fi # if [ ! -d $(DESTDIR)$(exec_prefix) ] ; then mkdir $(DESTDIR)$(exec_prefix) ; fi # if [ ! -d $(DESTDIR)$(libdir) ] ; then mkdir $(DESTDIR)$(libdir) ; fi if [ ! -d $(DESTDIR)$(includedir) ] ; then mkdir $(DESTDIR)$(includedir) ; fi # if [ ! -d $(DESTDIR)$(mandir) ] ; then mkdir $(DESTDIR)$(mandir) ; fi # if [ ! -d $(DESTDIR)$(mandir)/man3 ] ; then mkdir $(DESTDIR)$(mandir)/man3 ; fi # if [ ! -d $(DESTDIR)$(datadir) ] ; then mkdir $(DESTDIR)$(datadir) ; fi # if [ ! -d $(DESTDIR)$(htmldir) ] ; then mkdir $(DESTDIR)$(htmldir) ; fi uninstall : force # $(LIBTOOL_UNINSTALL) $(RM) $(DESTDIR)$(libdir)/libvacall.la $(RM) $(DESTDIR)$(includedir)/vacall_r.h # $(RM) $(DESTDIR)$(mandir)/man3/vacall_r.3 # $(RM) $(DESTDIR)$(htmldir)/vacall_r.html check : all extracheck : all mostlyclean : clean clean : force $(RM) *.o *.lo *.a libvacall.* core $(RM) vacall-i386.s vacall-sparc.s vacall-sparc64.s vacall-m68k.s vacall-mips.s vacall-mipsn32.s vacall-mips64.s vacall-arm.s $(RM) -r .libs _libs distclean : clean $(RM) config.status config.log config.cache Makefile vacall_r.h config.h libtool maintainer-clean : distclean force :