From 8d4a1e4a36464a8754e73565e1cf89b03f91c090 Mon Sep 17 00:00:00 2001 From: mibi88 Date: Sun, 16 Oct 2022 19:31:31 +0200 Subject: [PATCH] Makefile fix --- interpreter/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interpreter/Makefile b/interpreter/Makefile index de16494..4f8b3f6 100644 --- a/interpreter/Makefile +++ b/interpreter/Makefile @@ -13,7 +13,7 @@ LINK = ../common/*.o all: $(PROG) $(PROG): $(OBJS) - $(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) -o $(PROG) $(OBJS) $(LINK) + $(CC) $(CFLAGS) $(LDFLAGS) -o $(PROG) $(OBJS) $(LINK) $(LDLIBS) .c.o: $(CC) $(CFLAGS) -c $*.c