From 1271e497427879fe7f274b1b9c3e80ffa3b2a8d1 Mon Sep 17 00:00:00 2001 From: KO Myung-Hun Date: Fri, 29 Nov 2024 21:41:15 +0900 Subject: [PATCH] Makefiles: replace Unix style commands .PHONY and : are Unix style commands. At least, WMAKE v2.0.1 for OS/2 does not understand them. Signed-off-by: KO Myung-Hun --- Mkfiles/openwcom.mak | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Mkfiles/openwcom.mak b/Mkfiles/openwcom.mak index 91c606be..772bca3a 100644 --- a/Mkfiles/openwcom.mak +++ b/Mkfiles/openwcom.mak @@ -261,8 +261,7 @@ x86\regs.h: x86\regs.dat x86\regs.pl # reasonable, but doesn't update the time stamp if the files aren't # changed, to avoid rebuilding everything every time. Track the actual # dependency by the empty file asm\warnings.time. -.PHONY: warnings -warnings: dirs +warnings: dirs .SYMBOLIC $(RM_F) $(WARNFILES) $(WARNTIMES) asm\warnings.time $(MAKE) asm\warnings.time @@ -275,21 +274,21 @@ asm\warnings_c.h.time: asm\warnings.pl asm\warnings.time $(EMPTY) asm\warnings_c.h.time asm\warnings_c.h: asm\warnings_c.h.time - @: Side effect + %null Side effect include\warnings.h.time: asm\warnings.pl asm\warnings.time $(RUNPERL) $(srcdir)\asm\warnings.pl h include\warnings.h $(srcdir) $(EMPTY) include\warnings.h.time include\warnings.h: include\warnings.h.time - @: Side effect + %null Side effect doc\warnings.src.time: asm\warnings.pl asm\warnings.time $(RUNPERL) $(srcdir)\asm\warnings.pl doc doc\warnings.src $(srcdir) $(EMPTY) doc\warnings.src.time doc\warnings.src : doc\warnings.src.time - @: Side effect + %null Side effect # Assembler token hash asm\tokhash.c: x86\insns.dat x86\insnsn.c asm\tokens.dat asm\tokhash.pl &