diff --git a/packages/debug/test/build b/packages/debug/test/build deleted file mode 100755 index a06dddbba7..0000000000 --- a/packages/debug/test/build +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -. config/options - -$SCRIPTS/build toolchain - -make -C $BUILD/$1 diff --git a/packages/debug/test/install b/packages/debug/test/install deleted file mode 100755 index 776c4f13e0..0000000000 --- a/packages/debug/test/install +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -. config/options - -PKG_DIR=`find $PACKAGES -type d -name $1` - -mkdir -p $INSTALL/usr/bin -cp -f $BUILD/$1/$1 $INSTALL/usr/bin/testprogramm diff --git a/packages/debug/test/sources/Makefile b/packages/debug/test/sources/Makefile deleted file mode 100644 index bc5f8ff909..0000000000 --- a/packages/debug/test/sources/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -CC ?= gcc -CFLAGS = -static -Wall -g3 -ggdb3 -Os -LDFLAGS = - -SRCS = test.c -PROG = test - -all: $(PROG) - -$(PROG): $(SRCS) - $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ - -clean: - rm -f $(PROG) diff --git a/packages/debug/test/sources/test.c b/packages/debug/test/sources/test.c deleted file mode 100644 index 0ad7f8c423..0000000000 --- a/packages/debug/test/sources/test.c +++ /dev/null @@ -1,6 +0,0 @@ -#include - -int main(void) { -char *msg = "works\n"; -return write(STDOUT_FILENO, msg, 6) != 6; -} \ No newline at end of file