CC=cc SRC=helper.c list.c stack.c queue.c libcontainer.a: $(SRC) $(CC) -c $(SRC) ar -r libcontainer.a *.o debug: libcontainer.a $(CC) -c test.c $(CC) -o test test.o libcontainer.a ./test > debug clean: rm -f *.o *.a debug test *.core