Files
CervusOS/builder/Makefile
T
alexvoste 1a9fd27a31 push
2026-05-07 02:22:25 +03:00

15 lines
205 B
Makefile

CC = gcc
CFLAGS = -Wall -Wextra -O2
TARGET = ../build
all: $(TARGET)
$(TARGET): build.c
$(CC) $(CFLAGS) -o $@ $<
@echo "Build script is ready at: $(TARGET)"
clean:
rm -f $(TARGET)
.PHONY: all clean