TARGET=Textures.xbt
TARGET_CURIAL=curial.xbt

all: $(TARGET) $(TARGET_CURIAL)

.PHONY: force

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

$(TARGET_CURIAL):
	 -dupecheck -input ../themes/curial -output $(TARGET_CURIAL)

clean:
	rm -f $(TARGET)
	rm -f $(TARGET_CURIAL)

distclean: clean
