shithub: choc

ref: 2e67fde263924a1f3f3b792dbd38bd58b7a3b948
dir: /pkg/wince/GNUmakefile/

View raw version

include ../config.make

DEPS=$(shell ./wince-cabgen -d $(CONFIG_FILE))
EXECUTABLES=$(filter %.exe, $(DEPS))
CONFIG_FILE=wince-cab.cfg
OUTPUT_FILE=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).cab

$(OUTPUT_FILE) : $(CONFIG_FILE) $(DEPS)
	$(STRIP) $(EXECUTABLES)
	./wince-cabgen $< $@

clean:
	rm -f $(OUTPUT_FILE)