diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-05-15 17:20:42 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-06-11 10:40:00 +0200 |
commit | c5caff6bdad0e3e54b8a7018a5c29448caeccabf (patch) | |
tree | 1c715459b63fffb39442545a3ac8ea0d16f767fc /Makefile.micro | |
parent | 23cfd2fcc891e2298c078e093010af5bdb902cc6 (diff) | |
download | perl-c5caff6bdad0e3e54b8a7018a5c29448caeccabf.tar.gz |
Correct errors in the use of multiple targets, which could break parallel make.
This was fixed in Makefile.SH in commit 0f13ebd5d71f8177.
Diffstat (limited to 'Makefile.micro')
-rw-r--r-- | Makefile.micro | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.micro b/Makefile.micro index 45cf26e962..2e0927c351 100644 --- a/Makefile.micro +++ b/Makefile.micro @@ -177,7 +177,9 @@ uutil$(_O): $(HE) util.c uperlapi$(_O): $(HE) perlapi.c perlapi.h $(CC) $(CCFLAGS) -o $@ $(CFLAGS) perlapi.c -uudmap.h bitcount.h mg_data.h: generate_uudmap$(_X) +uudmap.h mg_data.h: bitcount.h + +bitcount.h: generate_uudmap$(_X) $(RUN) ./generate_uudmap$(_X) uudmap.h bitcount.h mg_data.h generate_uudmap$(_O): generate_uudmap.c |