
PROG = dm2au
OBJS = main.o raw2au.o directory.o snd2au.o
CFLAGS = -g

$(PROG): $(OBJS)
	gcc -o $@ $(OBJS)
	
clean:
	rm -f $(PROG) $(OBJS)
