SRCS = unshar.c
OBJS = unshar.o

CFLAGS =  -+ -Dvoid=int -DPTX 

unshar: $(OBJS)
	$(CC) -o $@ $(OBJS)

clean:
	rm unshar.o unshar

