aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: f90b64e948abd390d94bd0ee47543b870388880f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
TARGET=mazerator
SRCS=$(TARGET).c stack.c
CC=gcc
CFLAGS=-Wall

all: $(TARGET)

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

clean:
	$(RM) $(TARGET)