#
# makefile for C gateway tools
#
CFLAGS = -g

OBS=gwrst.o

all: gwrst

gwrst: $(OBS)
	cc $(CFLAGS) $(OBS) -o $@

clean:
	rm -f $(OBJS) *.o a.out core errs gmon.out *.bak *~

