From 163664d2065cc2e8c61a25db1537934315b286cb Mon Sep 17 00:00:00 2001 From: Lorenzo Torres Date: Tue, 16 Jun 2026 14:05:40 +0200 Subject: rename project to xcc --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e276abd..b232249 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,17 @@ include config.mk -SRC:=lc.c\ +SRC:=xcc.c\ lexer.c\ parser.c OBJ:=$(SRC:.c=.o) all: $(OBJ) - $(CC) $(OBJ) -o lc + $(CC) $(OBJ) -o xcc %.o: %.c $(CC) $(CFLAGS) -c $< -o $@ .PHONY: clean clean: - @rm -rfv $(OBJ) lc + @rm -rfv $(OBJ) xcc -- cgit v1.2.3