scanner: remove linker dependency
[uebersetzerbau-ss10.git] / gesamt_arm64 / Makefile
index db261f8b883f69f89d856e3a5cbed9f4191769f7..f63c6f50be4d4bcfc38d1038b6bd0388cbb57ffc 100644 (file)
@@ -1,6 +1,6 @@
 SHELL := bash
-CC := /usr/lib/ccache/gcc
-NAME := gesamt_arm
+CC := gcc
+NAME := gesamt_arm64
 CFLAGS := -ansi -pedantic -D_GNU_SOURCE -g
 OBJS := scanner.o parser.o symtable.o code.o chelper.o tree.o
 
@@ -8,7 +8,7 @@ all: $(NAME)
 
 $(NAME): $(OBJS)
        @echo "  LINK    $@"
-       @$(CC) -o $@ $(OBJS) -lfl
+       @$(CC) -o $@ $(OBJS)
 
 scanner.c: oxout.l
        @echo "  FLEX    $<"