Skip to content
Snippets Groups Projects
Commit c19c8bc5 authored by Charles Barnwell's avatar Charles Barnwell
Browse files

Upload New File

parent 2209a42a
Branches
No related tags found
No related merge requests found
# Compiler settings
CC = gcc
CFLAGS = -Wall -Wextra -g
# Target executable name
TARGET = stringfun
# Default target
all: $(TARGET)
# Compile source to executable
$(TARGET): stringfun.c
$(CC) $(CFLAGS) -o $(TARGET) $^
# Clean up build files
clean:
rm -f $(TARGET)
# Phony targets
.PHONY: all clean
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment