CC=gcc
CFLAGS=-g

all: mdm_lib.o

mdm_lib.o: mdm_lib.c mdm_lib.h

clean:
	rm -f *~ *.bak

mrproper: clean
	rm -f *.o

install:

uninstall:
