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

Annotation of /trunk/freehttpd/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 44 - (hide annotations)
Sat Aug 10 18:33:37 2024 UTC (7 months, 3 weeks ago) by rakinar2
File size: 245 byte(s)
feat: add freehttpd source files to the project

1 rakinar2 44 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