CC = gcc
CFLAGS = -g -Wall -W -Wno-long-long -pipe

all:		sethdlc

sethdlc:	sethdlc.c
		$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<

install:	sethdlc
		install -p -s sethdlc /usr/sbin/
		cp if_th.ko /modules

clean:
		rm -f sethdlc
