From bc50b6c32147c44ef8dff437e3f4b453ce3db43f Mon Sep 17 00:00:00 2001 From: Brian Harring Date: Thu, 6 Oct 2005 18:24:42 +0000 Subject: removing unused sandbox dirs. svn path=/main/branches/2.0/; revision=2116 --- src/sandbox-1.1/Makefile | 81 ------------------------------------------------ 1 file changed, 81 deletions(-) delete mode 100644 src/sandbox-1.1/Makefile (limited to 'src/sandbox-1.1/Makefile') diff --git a/src/sandbox-1.1/Makefile b/src/sandbox-1.1/Makefile deleted file mode 100644 index add08fc23..000000000 --- a/src/sandbox-1.1/Makefile +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright (C) 2001 Geert Bevin, Uwyn, http://www.uwyn.com -# Distributed under the terms of the GNU General Public License, v2 or later -# Author : Geert Bevin -# -# Modified 15 Apr 2002 Jon Nelson -# Clean up Makefile somewhat, and use make's implicit rules -# -# Modified 19 Aug 2002; Martin Schlemmer -# Major rewrite to support new stuff -# -# Indent: indent -kr -i2 -ts2 -sob -l80 -ss -bs -psl -# -# $Id: /var/cvsroot/gentoo-src/portage/src/sandbox-1.1/Attic/Makefile,v 1.7.2.2 2004/11/29 08:41:28 carpaski Exp $ - -CC ?= gcc -LD ?= ld -CFLAGS = -ARCH_CFLAGS = -OBJ_CFLAGS = -D_GNU_SOURCE -DPIC -fPIC -D_REENTRANT -LIBS = -LDFLAGS = -DESTDIR = - -HAVE_64BIT_ARCH = - -ifneq ($(HAVE_64BIT_ARCH),) - TARGETS = libsandbox.so libsandbox32.so sandbox - ARCH_CFLAGS += -m64 - OBJ_CFLAGS += -DSB_HAVE_64BIT_ARCH -else - TARGETS = libsandbox.so sandbox -endif - -all: $(TARGETS) - -sandbox: sandbox.o sandbox_futils.o getcwd.c - $(CC) $(CFLAGS) $(ARCH_CFLAGS) $(OBJ_CFLAGS) -Wall $^ -ldl -lc -o $@ - -sandbox.o: sandbox.c sandbox.h - $(CC) $(CFLAGS) $(ARCH_CFLAGS) $(OBJ_CFLAGS) -Wall -c sandbox.c -o $@ - -sandbox_futils.o: localdecls.h sandbox_futils.c sandbox.h - $(CC) $(CFLAGS) $(ARCH_CFLAGS) $(OBJ_CFLAGS) -Wall -c sandbox_futils.c -o $@ - -libsandbox.so: libsandbox.o sandbox_futils.o - $(CC) $^ -shared $(ARCH_CFLAGS) -fPIC -ldl -lc -nostdlib -lgcc -o $@ - -libsandbox.o: localdecls.h libsandbox.c canonicalize.c getcwd.c - $(CC) $(CFLAGS) $(ARCH_CFLAGS) $(OBJ_CFLAGS) -Wall -c libsandbox.c - -sandbox_futils32.o: sandbox_futils.c sandbox.h - $(CC) $(CFLAGS) -m32 $(OBJ_CFLAGS) -Wall -c sandbox_futils.c -o $@ - -libsandbox32.so: libsandbox32.o sandbox_futils32.o - $(CC) $^ -shared -m32 -fPIC -ldl -lc -nostdlib -lgcc -o $@ - -libsandbox32.o: libsandbox.c localdecls.h canonicalize.c getcwd.c - $(CC) $(CFLAGS) -m32 $(OBJ_CFLAGS) -Wall -c libsandbox.c -o $@ - -localdecls.h: create-localdecls libctest.c - ./create-localdecls - - -install: all - install -d -m 0755 $(DESTDIR)/lib - $(if $(HAVE_64BIT_ARCH),install -d -m 0755 $(DESTDIR)/lib32) - install -d -m 0755 $(DESTDIR)/usr/lib/portage/bin - install -d -m 0755 $(DESTDIR)/usr/lib/portage/lib - install -m 0755 libsandbox.so $(DESTDIR)/lib - $(if $(HAVE_64BIT_ARCH),install -m 0755 libsandbox32.so $(DESTDIR)/lib32/libsandbox.so) - install -m 0755 sandbox $(DESTDIR)/usr/lib/portage/bin - install -m 0644 sandbox.bashrc $(DESTDIR)/usr/lib/portage/lib - - -clean: - rm -f $(TARGETS) - rm -f *.o *~ core - rm -f localdecls.h - - -# vim:expandtab noai:cindent ai -- cgit v1.2.3-1-g7c22