Files
2026-06-28 01:46:03 +00:00

24 lines
351 B
Makefile

#
# Copyright (c) 2026, Chloe M.
# Provided under the BSD-3 clause
#
# Description: Cum extractor build script
# Author: Chloe M.
#
include ../mk/global.mk
.SILENT:
CFILES = $(shell find . -name "*.c")
OFILES = $(CFILES:.c=.o)
.PHONY: all
all: ../cumxct
.PHONY: hole
../cumxct: $(OFILES)
$(CC) $^ -o $@
%.o: %.c
$(CC) -c $(CFLAGS) $< -o $@