crimata-os/auth/Makefile
Andrew Gundersen cbea265775 Initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-25 15:35:31 -05:00

13 lines
219 B
Makefile

CC = gcc
CFLAGS = -Wall -Wextra -O2
LIBS = -lpam -lmicrohttpd
SRC = src/main.c src/pam_auth.c
OUT = crimata-auth
.PHONY: all clean
all:
$(CC) $(CFLAGS) $(SRC) $(LIBS) -o $(OUT)
clean:
rm -f $(OUT)