TARGET=Textures.xbt

all: $(TARGET)

.PHONY: force

$(TARGET):
	 -dupecheck -input . -output $(TARGET)

clean:
	rm -f $(TARGET)

distclean: clean

