/[osn-commons]/trunk/freehttpd/Makefile
ViewVC logotype

Contents of /trunk/freehttpd/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 45 - (show annotations)
Sun Aug 11 17:35:46 2024 UTC (7 months, 2 weeks ago) by rakinar2
File size: 363 byte(s)
feat(freehttpd): file serving and directory indexing

1 SOURCES = $(wildcard *.c)
2 HEADERS = $(wildcard *.h)
3 OBJECTS = $(SOURCES:.c=.o)
4 BIN = freehttpd
5 CFLAGS = -g -O2 -Wall -Wextra -Werror -std=c23 -pedantic -pedantic-errors -pthread -D_POSIX_C_SOURCE=200809L -D_GNU_SOURCE
6 LDFLAGS = -pthread
7 LDLIBS = -lmagic
8 CC = gcc
9
10 all: $(BIN)
11
12 $(BIN): $(OBJECTS) $(HEADERS)
13
14 $(HEADERS): $(SOURCES)
15
16 clean:
17 rm -f $(BIN) $(OBJECTS)

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26