Files
secondo/Tools/usingcheck/makefile
2026-01-23 17:03:45 +08:00

25 lines
254 B
Makefile

BASE:=minimal
.PHONY: all
all: usingcheck
usingcheck : usingcheck.o
gcc -o $@ $< -lfl
usingcheck.o: usingcheck.c
gcc -c -o $@ $<
usingcheck.c: usingcheck.l
flex -o $@ $<
.PHONY: clean
clean:
rm -f usingcheck usingcheck.o usingcheck.c