diff options
author | wukong <rebirthmonkey@gmail.com> | 2015-11-23 17:48:48 +0100 |
---|---|---|
committer | wukong <rebirthmonkey@gmail.com> | 2015-11-23 17:48:48 +0100 |
commit | fca74d4bc3569506a6659880a89aa009dc11f552 (patch) | |
tree | 4cefd06af989608ea8ebd3bc6306889e2a1ad175 /moon-abe/libbswabe-0.9/Makefile.in | |
parent | 840ac3ebca7af381132bf7e93c1e4c0430d6b16a (diff) |
moon-abe cleanup
Change-Id: Ie1259856db03f0b9e80de3e967ec6bd1f03191b3
Diffstat (limited to 'moon-abe/libbswabe-0.9/Makefile.in')
-rw-r--r-- | moon-abe/libbswabe-0.9/Makefile.in | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/moon-abe/libbswabe-0.9/Makefile.in b/moon-abe/libbswabe-0.9/Makefile.in deleted file mode 100644 index 63f9351c..00000000 --- a/moon-abe/libbswabe-0.9/Makefile.in +++ /dev/null @@ -1,80 +0,0 @@ -top_srcdir = @top_srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ -libdir = @libdir@ -includedir = @includedir@ - -CC = @CC@ -CFLAGS = @CFLAGS@ \ - @GLIB_CFLAGS@ \ - @GMP_CFLAGS@ \ - @PBC_CFLAGS@ \ - @DEFS@ -LDFLAGS = @LDFLAGS@ \ - @GLIB_LIBS@ \ - @GMP_LIBS@ \ - @PBC_LIBS@ \ - @LIBS@ - -DISTNAME = @PACKAGE_TARNAME@-@PACKAGE_VERSION@ - -all: libbswabe.a TAGS - -# compilation and library making - -libbswabe.a: core.o misc.o - rm -f $@ - ar rc $@ $^ - -# test: test.o libbswabe.a -# $(CC) -o $@ $(LDFLAGS) $^ - -%.o: %.c *.h Makefile - $(CC) -c -o $@ $< $(CFLAGS) - -# installation - -dist: AUTHORS COPYING INSTALL NEWS README \ - aclocal.m4 acinclude.m4 configure configure.ac Makefile.in \ - install-sh missing mkinstalldirs \ - core.c misc.c private.h bswabe.h - rm -rf $(DISTNAME) - mkdir $(DISTNAME) - cp $^ $(DISTNAME) - tar zc $(DISTNAME) > $(DISTNAME).tar.gz - rm -rf $(DISTNAME) - -install: libbswabe.a bswabe.h - $(top_srcdir)/mkinstalldirs -m 755 $(DESTDIR)$(libdir) - $(top_srcdir)/mkinstalldirs -m 755 $(DESTDIR)$(includedir) - $(top_srcdir)/install-sh -m 755 libbswabe.a $(DESTDIR)$(libdir) - $(top_srcdir)/install-sh -m 644 bswabe.h $(DESTDIR)$(includedir) - -uninstall: - /bin/rm -f $(DESTDIR)$(libdir)/libbswabe.a - /bin/rm -f $(DESTDIR)$(includedir)/bswabe.h - -# development and meta stuff - -TAGS: *.c *.h - @(etags $^ || true) 2> /dev/null - -Makefile: Makefile.in config.status - ./config.status - -config.status: configure - ./config.status --recheck - -configure: configure.ac aclocal.m4 - autoconf - -# cleanup - -# remove everything an installing user can rebuild -clean: - rm -rf *.o *.a $(DISTNAME) *.tar.gz TAGS *~ - -# remove everything a package developer can rebuild -distclean: clean - rm -rf autom4te.cache Makefile config.status config.log config.cache \ - configure configure.scan autoscan*.log |