move resource files into separate directory
15
Makefile.in
|
@ -18,12 +18,11 @@ SOURCES = main.c main.h openvpn.c openvpn.h localization.c localization.h \
|
||||||
tray.c tray.h viewlog.c viewlog.h service.c service.h \
|
tray.c tray.h viewlog.c viewlog.h service.c service.h \
|
||||||
options.c options.h passphrase.c passphrase.h proxy.c proxy.h \
|
options.c options.h passphrase.c passphrase.h proxy.c proxy.h \
|
||||||
registry.c registry.h scripts.c scripts.h manage.c manage.h \
|
registry.c registry.h scripts.c scripts.h manage.c manage.h \
|
||||||
openvpn_config.c openvpn_config.h openvpn-gui.manifest \
|
openvpn_config.c openvpn_config.h res/openvpn-gui.manifest \
|
||||||
chartable.h openvpn-gui-res.h openvpn-gui-res*.rc
|
chartable.h openvpn-gui-res.h res/openvpn-gui-res*.rc
|
||||||
|
|
||||||
EXTRA = connected.ico connecting.ico disconnected.ico reconnecting.ico openvpn-gui.ico \
|
EXTRA = res/*.ico acinclude.m4 Makefile.in aclocal.m4 config.h.in configure \
|
||||||
acinclude.m4 Makefile.in aclocal.m4 config.h.in configure configure.ac \
|
configure.ac config.guess config.sub install-sh \
|
||||||
config.guess config.sub install-sh \
|
|
||||||
OpenVPN\ GUI\ ReadMe.txt changes.txt COPYING COPYRIGHT.GPL
|
OpenVPN\ GUI\ ReadMe.txt changes.txt COPYING COPYRIGHT.GPL
|
||||||
|
|
||||||
all : ${OBJS}
|
all : ${OBJS}
|
||||||
|
@ -32,13 +31,13 @@ all : ${OBJS}
|
||||||
%.o : %.c %.h
|
%.o : %.c %.h
|
||||||
$(CC) $(CFLAGS) -c $<
|
$(CC) $(CFLAGS) -c $<
|
||||||
|
|
||||||
openvpn-gui-res.o : openvpn-gui-res.h *.rc *.ico *.manifest
|
openvpn-gui-res.o : openvpn-gui-res.h res/*.rc res/*.ico res/*.manifest
|
||||||
$(WINDRES) -i openvpn-gui-res.rc -o openvpn-gui-res.o
|
$(WINDRES) -I. -i res/openvpn-gui-res.rc -o openvpn-gui-res.o
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
rm -rf @PACKAGE_TARNAME@-*/
|
rm -rf @PACKAGE_TARNAME@-*/
|
||||||
mkdir @PACKAGE_TARNAME@-$(VERSION)
|
mkdir @PACKAGE_TARNAME@-$(VERSION)
|
||||||
cp $(SOURCES) $(EXTRA) @PACKAGE_TARNAME@-$(VERSION)
|
cp --parents $(SOURCES) $(EXTRA) @PACKAGE_TARNAME@-$(VERSION)
|
||||||
test ! -f SNAPSHOT || { \
|
test ! -f SNAPSHOT || { \
|
||||||
cd openvpn-gui-$(VERSION); \
|
cd openvpn-gui-$(VERSION); \
|
||||||
cp ../SNAPSHOT .; \
|
cp ../SNAPSHOT .; \
|
||||||
|
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |