X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Makefile;h=f55f7052b7c83205bf87171fc08c7b8e21acaaf5;hb=2e0feca0409acec706014de6b06d66938c22e22e;hp=9d1faf52202a644454afe96c6f297013e7fe60eb;hpb=6e3819a76c191291eb66807bd9c02614f15a1f38;p=xonotic%2Fgmqcc.git diff --git a/Makefile b/Makefile index 9d1faf5..f55f705 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CC = gcc +CC = clang CFLAGS += -Wall OBJ = main.o \ lex.o \ @@ -7,7 +7,7 @@ OBJ = main.o \ typedef.o \ util.o \ code.o \ - assembler.c + asm.c %.o: %.c $(CC) -c $< -o $@ $(CFLAGS)