diff options
Diffstat (limited to 'libslang/autoconf/Makefile.in')
-rw-r--r-- | libslang/autoconf/Makefile.in | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/libslang/autoconf/Makefile.in b/libslang/autoconf/Makefile.in new file mode 100644 index 0000000..4b487fe --- /dev/null +++ b/libslang/autoconf/Makefile.in @@ -0,0 +1,37 @@ +# -*- sh -*- + +#This is a UNIX-only makefile. For other systems, get a makefile from +#src/mkfiles/ + +@SET_MAKE@ +SHELL = /bin/sh + +all: + cd src; $(MAKE) all +elf: + cd src; $(MAKE) elf + @echo Use make install-elf to install it. +runtests: + cd src; $(MAKE) runtests +demos: + cd demo; $(MAKE) +clean: + /bin/rm -f *~ + cd src; $(MAKE) clean + cd demo; $(MAKE) clean +install: + cd src; $(MAKE) install +install-elf: + cd src; $(MAKE) install-elf + @echo "" + @echo "On some systems, e.g., linux, you may also have to run ldconfig." + @echo "" +install-links: + cd src; $(MAKE) install-links +# +distclean: + /bin/rm -f *~ Makefile config.status config.log config.cache files.pck + cd src; $(MAKE) distclean + cd demo; $(MAKE) distclean +# + |