lt-core/lt-stdlib/makefile
2024-12-24 12:51:36 +01:00

11 lines
146 B
Makefile

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