CC=gcc
CFLAGS=-std=c99 -g3 -Wall -pedantic

all: stack queue

test: all
	./stack
	./queue

clean:
	$(RM) stack queue *.o
