CC = gcc

CFLAGS += -Wall

all: mISDNdebugtool

install: mISDNdebugtool
	install -m 755 mISDNdebugtool $(INSTALL_PREFIX)/usr/bin

clean:
	rm -f mISDNdebugtool *.o

distclean: clean

