define arguments for todos

This commit is contained in:
talksik
2025-08-03 16:03:42 -07:00
commit a423d52d96
2 changed files with 42 additions and 0 deletions
+11
View File
@@ -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)