summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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