summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLorenzo Torres <lorenzotorres@outlook.it>2026-06-16 14:05:40 +0200
committerLorenzo Torres <lorenzotorres@outlook.it>2026-06-16 14:05:40 +0200
commit163664d2065cc2e8c61a25db1537934315b286cb (patch)
treed65b2fec3ae79218017b74fc15e5e7dbad1596d0 /Makefile
parent6c9d0f7fad1d96796efef43a6db7eef6df8de054 (diff)
rename project to xccHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
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