uncloseai.com/public/languages/c/nghttp2/Makefile

20 lines
360 B
Makefile

# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
# https://www.permacomputer.com
CC = gcc
CFLAGS = -Wall -Wextra -O2
LDFLAGS = -lnghttp2
TARGET = uncloseai
SRC = uncloseai.c
all: $(TARGET)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $(TARGET) $(SRC) $(LDFLAGS)
clean:
rm -f $(TARGET) speech.mp3
.PHONY: all clean