@@ -0,0 +1,11 @@
CC = gcc
CFLAGS = -Wall -g -Iinclude
TARGET = main
SRC = main.c
LIBS = -lcurl
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $(TARGET) $(SRC) $(LIBS)
clean:
rm -f *.o $(TARGET)
The note is not visible to the blocked user.