diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-11-08 16:22:05 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-11-08 16:22:12 +0100 |
commit | 29fbbc7bf7be84f37ff613f9db30d68b79114b13 (patch) | |
tree | 8a5b88084c20d4f6c8328f8c0f29e3eb85071395 | |
parent | d211c4b102dbca3dffcedf81464ebec3b2e111bd (diff) |
fix duplicate name in makefile
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ TARGET = main SRCS := $(wildcard *.c) OBJS := $(patsubst %.c,%.o, $(SRCS)) -all: main +all: $(TARGET) %.o: %.c $(CC) -c $(CFLAGS) $< -o $@ |