diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-07-30 11:16:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-07-30 11:16:01 +0000 |
commit | 3d79e422764401cf0d18a86bdf2679511119cdbc (patch) | |
tree | d54b9d808abea542594e7a7b5da7687d27dfa474 /perl-install/Makefile | |
parent | 0ec07d89144fab40d351a24dca0645eca179ce29 (diff) | |
download | drakx-3d79e422764401cf0d18a86bdf2679511119cdbc.tar drakx-3d79e422764401cf0d18a86bdf2679511119cdbc.tar.gz drakx-3d79e422764401cf0d18a86bdf2679511119cdbc.tar.bz2 drakx-3d79e422764401cf0d18a86bdf2679511119cdbc.tar.xz drakx-3d79e422764401cf0d18a86bdf2679511119cdbc.zip |
no_comment
Diffstat (limited to 'perl-install/Makefile')
-rw-r--r-- | perl-install/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/perl-install/Makefile b/perl-install/Makefile index 30ea0be7f..c4567e638 100644 --- a/perl-install/Makefile +++ b/perl-install/Makefile @@ -5,18 +5,19 @@ DEST = $(ROOTDEST)/Mandrake/instimage DESTREP4PMS = $(DEST)/usr/bin/perl-install PERL = perl LOCALFILES = $(PERL) mouseconfig +DIRS = po pci_probing EXCLUDE = $(LOCALFILES) boot.img keymaps xmodmaps consolefonts install -.PHONY: all po tags install clean verify_c +.PHONY: all $(DIRS) tags install clean verify_c -all: $(SO_FILES) po install1_hd +all: $(SO_FILES) $(DIRS) install1_hd tags: etags -o - $(PMS) | perl2etags > TAGS clean: test ! -e c/Makefile || $(MAKE) -C c clean - $(MAKE) -C po clean + for i in $(DIRS); do $(MAKE) -C $$i clean; done rm -f c/c.xs install1_hd gendepslist find . -name "*~" -o -name "TAGS" -o -name "*.old" | xargs rm -f @@ -41,8 +42,8 @@ $(SO_FILES): c/c.xs install1_hd: install1_hd.c $(CC) -static -Wall -o $@ $< -po: - $(MAKE) -C po +$(DIRS): + $(MAKE) -C $@ test_pms: verify_c perl2fcalls -excludec install2 |