Skip to content

Commit

Permalink
Correct errors in the use of multiple targets for bitcount.h and uudm…
Browse files Browse the repository at this point in the history
…ap.h

The fixes of Makefile.SH in 0f13ebd also need to be applied on Win32
and VMS.
  • Loading branch information
nwc10 committed Aug 31, 2010
1 parent 56e7657 commit 6999193
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion vms/descrip_mms.template
Expand Up @@ -508,7 +508,9 @@ perlmini.c : perl.c
perlmini$(O) : perlmini.c
$(CC) $(CORECFLAGS) $(MMS$SOURCE)

uudmap.h bitcount.h : generate_uudmap$(E)
uudmap.h : bitcount.h

bitcount.h : generate_uudmap$(E)
MCR SYS$DISK:[]generate_uudmap$(E) uudmap.h bitcount.h

generate_uudmap$(E) : generate_uudmap$(O) $(CRTL)
Expand Down
5 changes: 4 additions & 1 deletion win32/Makefile
Expand Up @@ -979,7 +979,10 @@ $(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions

$(MINIDIR)\globals$(o) : $(UUDMAP_H) $(BITCOUNT_H)

$(UUDMAP_H) $(BITCOUNT_H) : $(GENUUDMAP)
$(UUDMAP_H) : $(BITCOUNT_H)
$(GENUUDMAP) $(UUDMAP_H) $(BITCOUNT_H)

$(BITCOUNT_H) : $(GENUUDMAP)
$(GENUUDMAP) $(UUDMAP_H) $(BITCOUNT_H)

$(GENUUDMAP) : $(GENUUDMAP_OBJ)
Expand Down
4 changes: 3 additions & 1 deletion win32/makefile.mk
Expand Up @@ -1318,7 +1318,9 @@ $(X2P) : $(MINIPERL) $(X2P_OBJ) Extensions

$(MINIDIR)\globals$(o) : $(UUDMAP_H) $(BITCOUNT_H)

$(UUDMAP_H) $(BITCOUNT_H) : $(GENUUDMAP)
$(UUDMAP_H) : $(BITCOUNT_H)

$(BITCOUNT_H) : $(GENUUDMAP)
$(GENUUDMAP) $(UUDMAP_H) $(BITCOUNT_H)

$(GENUUDMAP) : $(GENUUDMAP_OBJ)
Expand Down

0 comments on commit 6999193

Please sign in to comment.