move package test:

- no more need, move to pkg-archive branch
This commit is contained in:
Stephan Raue 2009-10-22 10:39:11 +02:00
parent bbb3188758
commit 97223960cc
4 changed files with 0 additions and 35 deletions

View File

@ -1,7 +0,0 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
make -C $BUILD/$1

View File

@ -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

View File

@ -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)

View File

@ -1,6 +0,0 @@
#include <unistd.h>
int main(void) {
char *msg = "works\n";
return write(STDOUT_FILENO, msg, 6) != 6;
}