Parent Directory
|
Revision Log
feat: add freehttpd source files to the project
1 | SOURCES = $(wildcard *.c) |
2 | OBJECTS = $(SOURCES:.c=.o) |
3 | BIN = freehttpd |
4 | CFLAGS = -g -O2 -Wall -Wextra -Werror -std=c23 -pedantic -pedantic-errors -pthread |
5 | LDFLAGS = -pthread |
6 | CC = gcc |
7 | |
8 | all: $(BIN) |
9 | |
10 | $(BIN): $(OBJECTS) |
11 | |
12 | clean: |
13 | rm -f $(BIN) $(OBJECTS) |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |