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
