Rename pwnables to armadillo

This commit is contained in:
Neale Pickett 2011-03-22 14:07:10 -06:00
parent 271ad9a961
commit 31d30ccc04
28 changed files with 21 additions and 24 deletions

View File

@ -0,0 +1,20 @@
ARMADILLO_PKGDIR = $(TARGET)/armadillo
armadillo-install: armadillo-build
mkdir -p $(ARMADILLO_PKGDIR)
mkdir -p $(ARMADILLO_PKGDIR)/bin/
$(MAKE) -C packages/armadillo/src install DESTDIR=$(CURDIR)/$(ARMADILLO_PKGDIR)
$(call COPYTREE, packages/armadillo/tokens, $(ARMADILLO_PKGDIR)/tokens)
$(call COPYTREE, packages/armadillo/service, $(ARMADILLO_PKGDIR)/service)
armadillo-clean:
rm -rf $(ARMADILLO_PKGDIR)
$(MAKE) -C packages/armadillo/src clean
armadillo-build:
$(MAKE) -C packages/armadillo/src build
PACKAGES += armadillo

View File

@ -1,5 +1,5 @@
CFLAGS = -Wall -Werror
TARGETS = gimmie ltraceme straceme killme
TARGETS = gimmie straceme killme
all: build
@ -7,7 +7,6 @@ build: $(TARGETS)
gimmie: gimmie.o token.o arc4.o
octopus: octopus.o token.o arc4.o
ltraceme: ltraceme.o token.o arc4.o
straceme: straceme.o token.o arc4.o
killme: killme.o token.o arc4.o

View File

@ -1,6 +1,4 @@
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <sysexits.h>
#include "token.h"

View File

@ -1,20 +0,0 @@
PWNABLES_PKGDIR = $(TARGET)/pwnables
pwnables-install: pwnables-build
mkdir -p $(PWNABLES_PKGDIR)
mkdir -p $(PWNABLES_PKGDIR)/bin/
$(MAKE) -C packages/pwnables/src install DESTDIR=$(CURDIR)/$(PWNABLES_PKGDIR)
$(call COPYTREE, packages/pwnables/tokens, $(PWNABLES_PKGDIR)/tokens)
$(call COPYTREE, packages/pwnables/service, $(PWNABLES_PKGDIR)/service)
pwnables-clean:
rm -rf $(PWNABLES_PKGDIR)
$(MAKE) -C packages/pwnables/src clean
pwnables-build:
$(MAKE) -C packages/pwnables/src build
PACKAGES += pwnables