xca/mkxcapro.sh
Christian Hohnstaedt f157c20c0b Version 0.6.0-pre00
make dist fixed for git
2006-11-28 09:22:18 +01:00

20 lines
324 B
Bash
Executable File

#!/bin/sh
P=xca.pro
if [ -e Makefile ]; then
make distclean
fi
echo -n "Creating $P ..."
echo "HEADERS = "`ls lib/*.h` `ls widgets/*.h` >$P
echo "SOURCES = "`ls lib/*.cpp` `ls widgets/*.cpp` >>$P
echo "FORMS = "`ls ui/*.ui` >>$P
echo "TRANSLATIONS = "`ls lang/xca_??.ts` >>$P
echo "TARGET = xca" >>$P
echo " done"