build dlls into cabs too

This commit is contained in:
ehouse 2009-10-16 03:18:38 +00:00
parent 33903f5d61
commit 458b904280

View file

@ -261,9 +261,12 @@ bmps/%.bmp: bmps/%.pgm
# xwords4.ico:
# $(WINCEICONS) icotool -c -o $@ $^
CAB: $(TARGET)
CAB: $(TARGET) $(DLLS)
$(STRIP) $<
./exe2cab.pl $<
for DLL in $(DLLS); do \
./dll2cab.pl $$DLL; \
done
SHIP: $(TARGET)
$(STRIP) $<