l4re-base-25.08.0

This commit is contained in:
2025-09-12 15:55:45 +02:00
commit d959eaab98
37938 changed files with 9382688 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
PKGDIR ?= ..
L4DIR ?= $(PKGDIR)/../..
# the default is to build the listed directories, provided that they
# contain a Makefile. If you need to change this, uncomment the following
# line and adapt it.
# TARGET = src
include $(L4DIR)/mk/subdir.mk

View File

@@ -0,0 +1,13 @@
PKGDIR ?= ../..
L4DIR ?= $(PKGDIR)/../..
TARGET = $(PKGNAME)
# list your .c or .cc files here
SRC_C = main.c
SRC_CC =
# list requirements of your program here
REQUIRES_LIBS =
include $(L4DIR)/mk/prog.mk

View File

@@ -0,0 +1,5 @@
int main(int argc, char **argv)
{
return 0;
}