Add package: tcc

This commit is contained in:
PedroEdiaz
2024-06-16 12:34:38 +06:00
parent 277ed72980
commit dd12df5ef8
4 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
.POSIX:
OBJECTS = \
libtcc1.o \
alloca.o \
alloca-bt.o \
tcov.o \
stdatomic.o \
va_list.o \
dsohandle.o
CFLAGS = -B.. -I..
libtcc1.a: $(OBJECTS)
$(AR) rcs $@ $(OBJECTS)
.SUFFIXES: .S
.S.o:
$(CC) $(CFLAGS) -o $@ -c $>