For folder without Makefile
Can't use make --> use this command instead
gcc -o hello hello.c -lcs50
# Compiler
CC = gcc
# Flags
CFLAGS = -lcs50
# Target executable
TARGET = foo
# Source files
SRC = foo.c
# Build target
$(TARGET): $(SRC)
$(CC) $(SRC) -o $(TARGET) $(CFLAGS)
# Clean target to remove the executable
clean:
rm -f $(TARGET)