diff options
author | Mystery Man <unknown@mandriva.org> | 2001-08-07 17:40:36 +0000 |
---|---|---|
committer | Mystery Man <unknown@mandriva.org> | 2001-08-07 17:40:36 +0000 |
commit | 068d599562888a36a50e5bbdeb8b70f83fa7c287 (patch) | |
tree | 18f5eed8353b3af647412875d438b55ef8c07670 /perl-install/Makefile.drakxtools | |
parent | be838931607e1ab14c8c699e20dd807b55579f7b (diff) | |
download | drakx-topic/v_webmin_0_87.tar drakx-topic/v_webmin_0_87.tar.gz drakx-topic/v_webmin_0_87.tar.bz2 drakx-topic/v_webmin_0_87.tar.xz drakx-topic/v_webmin_0_87.zip |
This commit was manufactured by cvs2svn to create branchtopic/v_webmin_0_87
'v_webmin_0_87'.
Diffstat (limited to 'perl-install/Makefile.drakxtools')
-rw-r--r-- | perl-install/Makefile.drakxtools | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/perl-install/Makefile.drakxtools b/perl-install/Makefile.drakxtools deleted file mode 100644 index c11afdd58..000000000 --- a/perl-install/Makefile.drakxtools +++ /dev/null @@ -1,46 +0,0 @@ -include Makefile.config - -DIRS = ddcprobe serial_probe share/po Newt c resize_fat -NAME = libDrakX -PREFIX = -LIBDIR = $(PREFIX)/usr/lib -DATADIR = $(PREFIX)/usr/share -BINDEST = $(PREFIX)/usr/bin -SBINDEST = $(PREFIX)/usr/sbin -ETCDEST = $(PREFIX)/etc/gtk -BINX11DEST = $(PREFIX)/usr/X11R6/bin -LIBX11DEST = $(PREFIX)/usr/X11R6/lib/X11 -LIBDEST = $(LIBDIR)/$(NAME) -NETLIBDEST = $(LIBDIR)/$(NAME)/network -PIXDIR = $(DATADIR)/$(NAME)/pixmaps -.PHONY: $(DIRS) - -all: $(DIRS) - -$(DIRS): - install -d auto - rm standalone ; ln -s . standalone - rm -f share/po/DrakX.pot # force rebuild of po's - $(MAKE) -C $@ - -install: - install -d $(BINDEST) $(ETCDEST) $(SBINDEST) $(DATADIR) $(LIBDEST) $(NETLIBDEST) $(BINX11DEST) $(LIBX11DEST) $(PIXDIR) $(DIRS:%=$(LIBDEST)/%) - install -d $(LIBDEST)/sbus_probing - install $(STANDALONEPMS) $(SBINDEST) - install -s ddcprobe/ddcxinfos serial_probe/serial_probe $(SBINDEST) - ln -s ../../$(patsubst $(PREFIX)/usr%,%,$(SBINDEST))/XFdrake $(BINX11DEST)/Xdrakres - - install -m 644 *.pm $(LIBDEST) - install -m 644 network/*.pm $(NETLIBDEST) - install -m 644 pixmaps/* $(PIXDIR) - install -m 644 share/diskdrake.rc $(ETCDEST) - install -m 644 share/wizard.rc $(ETCDEST) - install -m 644 $(patsubst %,Newt/%.pm,Newt) $(LIBDEST)/Newt - install -m 644 $(patsubst %,c/%.pm,stuff) $(LIBDEST)/c - install -m 644 $(patsubst %,sbus_probing/%.pm,main) $(LIBDEST)/sbus_probing - install -m 644 $(patsubst %,resize_fat/%.pm,main any boot_sector c_rewritten dir_entry directory fat info_sector io) $(LIBDEST)/resize_fat - find $(LIBDEST) -name "*.pm" | xargs perl -pi -e '$$_ = "\n" if /\s*use\s+(diagnostics|vars|strict)/' - - $(MAKE) -C share/po install DATADIR=$(DATADIR) NAME=$(NAME) - - cp -rfL auto icons $(LIBDEST) |