This commit is contained in:
Michael Sippel 2024-12-24 12:51:36 +01:00
parent 4bc7fd1788
commit 12c0a008df
Signed by: senvas
GPG key ID: F96CF119C34B64A6
19 changed files with 220 additions and 534 deletions
lt-stdlib

11
lt-stdlib/makefile Normal file
View file

@ -0,0 +1,11 @@
TARGETS=$(shell find -name '*.lt' | sed -E 's~\.lt~\.o~')
all: $(TARGETS)
%.o: %.lt
ltcc $< -o target/$@
clean:
cd target && rm $(TARGETS)