mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
move package test:
- no more need, move to pkg-archive branch
This commit is contained in:
parent
bbb3188758
commit
97223960cc
@ -1,7 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. config/options
|
||||
|
||||
$SCRIPTS/build toolchain
|
||||
|
||||
make -C $BUILD/$1
|
@ -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
|
@ -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)
|
@ -1,6 +0,0 @@
|
||||
#include <unistd.h>
|
||||
|
||||
int main(void) {
|
||||
char *msg = "works\n";
|
||||
return write(STDOUT_FILENO, msg, 6) != 6;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user