#
#
#
#
include ../Rules.make


all:		tabspc


tabspc:		tabspc.c
		$(CX) -Wall -o $@ $<

clean:
		rm -rf *.o tabspc
 
