l33t/Makefile

14 lines
219 B
Makefile
Raw Normal View History

2024-11-28 23:16:16 +00:00
CC = gcc
# For now disabled
# CFLAGS = -Wall -Werror -Wextra -pedantic -Ofast -std=c2x
all: build run
build: l33t
l33t: io.h proc.h state.h str.h subprocess.h l33t.c
$(CC) $(CFLAGS) l33t.c -o l33t
run:
./l33t