@@ -0,0 +1,14 @@
OBJS = src/main.o
all: hello-world
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
hello-world: $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS)
clean:
rm -f $(OBJS) hello-world
The note is not visible to the blocked user.