diff options
Diffstat (limited to '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 $@ |