CC = gcc
CFLAGS = -O1 -Wall

TARGET = redstone

all: $(TARGET)

$(TARGET): run.c
	$(CC) $(CFLAGS) -o $(TARGET) run.c

clean:
	rm -f $(TARGET)
