Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: fix for broken MSVC and Open Watcom makefiles #103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ PERLFLAGS = -I$(top_srcdir)/perllib -I$(srcdir)
RUNPERL = $(PERL) $(PERLFLAGS)

EMPTY = : >
NULLCMD = @:

PYTHON3 = python3

Expand Down Expand Up @@ -91,6 +92,7 @@ endif
.PHONY: all doc install clean distclean cleaner spotless test
.PHONY: install_doc everything install_everything strip perlreq dist tags TAGS
.PHONY: nothing manpages nsis
.PHONY: warnings

.c.$(O):
$(CC) -c $(ALL_CFLAGS) -o $@ $<
Expand Down Expand Up @@ -164,13 +166,15 @@ LIBOBJ_NW = stdlib/snprintf.$(O) stdlib/vsnprintf.$(O) stdlib/strlcpy.$(O) \
disasm/disasm.$(O) disasm/sync.$(O)

# Warnings depend on all source files, so handle them separately
WARNOBJ = asm/warnings.$(O)
WARNFILES = asm/warnings_c.h include/warnings.h doc/warnings.src
WARNOBJ = asm/warnings.$(O)
WARNFILESX = asm/warnings_c.h.x include/warnings.h.x doc/warnings.src.x

LIBOBJ = $(LIBOBJ_NW) $(WARNOBJ)
ALLOBJ_NW = $(PROGOBJ) $(LIBOBJ_NW)
ALLOBJ = $(PROGOBJ) $(LIBOBJ)

WARNSRCS = $(LIBOBJ_NW:.$(O)=.c) asm/nasm.c

SUBDIRS = stdlib nasmlib include config output asm disasm x86 \
common macros
XSUBDIRS = test doc nsis win
Expand All @@ -196,10 +200,6 @@ nasm$(X): $(NASM) $(MANIFEST) $(NASMLIB)
ndisasm$(X): $(NDISASM) $(MANIFEST) $(NASMLIB)
$(CC) $(ALL_LDFLAGS) -o ndisasm$(X) $^ $(LIBS)

# These are specific to certain Makefile syntaxes...
WARNTIMES = $(WARNFILES:=.time)
WARNSRCS = $(LIBOBJ_NW:.$(O)=.c) asm/nasm.c

#-- Begin Generated File Rules --#

# These source files are automagically generated from data files using
Expand All @@ -214,7 +214,7 @@ PERLREQ_CLEANABLE = \
x86/iflag.c x86/iflaggen.h \
macros/macros.c \
asm/pptok.ph asm/directbl.c asm/directiv.h \
$(WARNFILES) \
$(WARNFILESX:.x=) \
misc/nasmtok.el \
version.h version.mac version.mak nsis/version.nsh

Expand Down Expand Up @@ -297,35 +297,34 @@ 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
$(RM_F) $(WARNFILES) $(WARNTIMES) asm/warnings.time
$(RM_F) $(WARNFILESX:.x=) $(WARNFILESX:.x=.time) asm/warnings.time
$(MAKE) asm/warnings.time

asm/warnings.time: $(WARNSRCS) asm/warnings.pl
$(EMPTY) asm/warnings.time
$(MAKE) $(WARNTIMES)
$(MAKE) $(WARNFILESX:.x=.time)

asm/warnings_c.h.time: asm/warnings.pl asm/warnings.time
$(RUNPERL) $(srcdir)/asm/warnings.pl c asm/warnings_c.h $(srcdir)
$(EMPTY) asm/warnings_c.h.time

asm/warnings_c.h: asm/warnings_c.h.time
@: Side effect
$(NULLCMD) 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
$(NULLCMD) 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
$(NULLCMD) Side effect

# Assembler token hash
asm/tokhash.c: x86/insns.dat x86/insnsn.c asm/tokens.dat asm/tokhash.pl \
Expand Down Expand Up @@ -363,7 +362,7 @@ asm/directbl.c: asm/directiv.dat nasmlib/perfhash.pl perllib/phash.ph
# Emacs token files
misc/nasmtok.el: misc/emacstbl.pl asm/tokhash.c asm/pptok.c \
asm/directiv.dat version
$(RUNPERL) $< $@ "$(srcdir)" "$(objdir)"
$(RUNPERL) $(srcdir)/misc/emacstbl.pl $@ "$(srcdir)" "$(objdir)"

#-- End Generated File Rules --#

Expand Down
100 changes: 52 additions & 48 deletions Mkfiles/msvc.mak
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ RUNPERL = $(PERL) $(PERLFLAGS)

MAKENSIS = makensis

EMPTY = echo >
NULLCMD = REM

RM_F = -del /f
RM_RF = -del /f/s
LN_S = copy

# Binary suffixes
Expand Down Expand Up @@ -120,13 +124,16 @@ LIBOBJ_NW = stdlib\snprintf.obj stdlib\vsnprintf.obj stdlib\strlcpy.obj \
disasm\disasm.obj disasm\sync.obj

# Warnings depend on all source files, so handle them separately
WARNOBJ = asm\warnings.obj
WARNFILES = asm\warnings_c.h include\warnings.h doc\warnings.src
WARNOBJ = asm\warnings.obj
WARNFILESX = asm\warnings_c.h.x include\warnings.h.x doc\warnings.src.x

LIBOBJ = $(LIBOBJ_NW) $(WARNOBJ)
ALLOBJ_NW = $(PROGOBJ) $(LIBOBJ_NW)
ALLOBJ = $(PROGOBJ) $(LIBOBJ)

# These are specific to certain Makefile syntaxes...
WARNSRCS = $(LIBOBJ_NW:.obj=.c)

SUBDIRS = stdlib nasmlib include config output asm disasm x86 \
common macros
XSUBDIRS = test doc nsis win
Expand All @@ -146,10 +153,6 @@ ndisasm$(X): $(NDISASM) $(MANIFEST) $(NASMLIB)
$(NASMLIB): $(LIBOBJ)
$(AR) $(ARFLAGS) /OUT:$@ $**

# These are specific to certain Makefile syntaxes...
WARNTIMES = $(patsubst %,%.time,$(WARNFILES))
WARNSRCS = $(patsubst %.obj,%.c,$(LIBOBJ_NW))

#-- Begin Generated File Rules --#
# Edit in Makefile.in, not here!

Expand All @@ -165,7 +168,7 @@ PERLREQ_CLEANABLE = \
x86\iflag.c x86\iflaggen.h \
macros\macros.c \
asm\pptok.ph asm\directbl.c asm\directiv.h \
$(WARNFILES) \
$(WARNFILESX:.x=) \
misc\nasmtok.el \
version.h version.mac version.mak nsis\version.nsh

Expand All @@ -175,9 +178,11 @@ PERLREQ = config\unconfig.h $(PERLREQ_CLEANABLE)

INSDEP = x86\insns.dat x86\insns.pl x86\insns-iflags.ph x86\iflags.ph

config\unconfig.h: config\config.h.in autoconf\unconfig.pl
$(RUNPERL) '$(srcdir)'\autoconf\unconfig.pl \
'$(srcdir)' config\config.h.in config\unconfig.h
!IF EXISTS($(srcdir)\config\config.h.in)
config\unconfig.h: autoconf\unconfig.pl config\config.h.in
$(RUNPERL) $(srcdir)\autoconf\unconfig.pl \
$(srcdir) config\config.h.in config\unconfig.h
!ENDIF

x86\iflag.c: $(INSDEP)
$(RUNPERL) $(srcdir)\x86\insns.pl -fc \
Expand Down Expand Up @@ -248,35 +253,34 @@ 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
$(RM_F) $(WARNFILES) $(WARNTIMES) asm\warnings.time
$(MAKE) asm\warnings.time
$(RM_F) $(WARNFILESX:.x=) $(WARNFILESX:.x=.time) asm\warnings.time
$(MAKE) -f mkfiles\msvc.mak asm\warnings.time

asm\warnings.time: $(WARNSRCS) asm\warnings.pl
$(EMPTY) asm\warnings.time
$(MAKE) $(WARNTIMES)
$(MAKE) -f mkfiles\msvc.mak $(WARNFILESX:.x=.time)

asm\warnings_c.h.time: asm\warnings.pl asm\warnings.time
$(RUNPERL) $(srcdir)\asm\warnings.pl c asm\warnings_c.h $(srcdir)
$(EMPTY) asm\warnings_c.h.time

asm\warnings_c.h: asm\warnings_c.h.time
@: Side effect
$(NULLCMD) 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
$(NULLCMD) 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
$(NULLCMD) Side effect

# Assembler token hash
asm\tokhash.c: x86\insns.dat x86\insnsn.c asm\tokens.dat asm\tokhash.pl \
Expand Down Expand Up @@ -314,7 +318,7 @@ asm\directbl.c: asm\directiv.dat nasmlib\perfhash.pl perllib\phash.ph
# Emacs token files
misc\nasmtok.el: misc\emacstbl.pl asm\tokhash.c asm\pptok.c \
asm\directiv.dat version
$(RUNPERL) $< $@ "$(srcdir)" "$(objdir)"
$(RUNPERL) $(srcdir)\misc\emacstbl.pl $@ "$(srcdir)" "$(objdir)"

#-- End Generated File Rules --#

Expand All @@ -335,42 +339,42 @@ nsis: nsis\nasm.nsi nsis\arch.nsh nsis\version.nsh
#-- End NSIS Rules --#

clean:
-del /f /s *.obj
-del /f /s *.pdb
-del /f /s *.s
-del /f /s *.i
-del /f $(NASMLIB) $(RDFLIB)
-del /f nasm$(X)
-del /f ndisasm$(X)
$(RM_RF) *.obj
$(RM_RF) *.pdb
$(RM_RF) *.s
$(RM_RF) *.i
$(RM_F) $(NASMLIB) $(RDFLIB)
$(RM_F) nasm$(X)
$(RM_F) ndisasm$(X)

distclean: clean
-del /f config.h
-del /f config.log
-del /f config.status
-del /f Makefile
-del /f /s *~
-del /f /s *.bak
-del /f /s *.lst
-del /f /s *.bin
-del /f /s *.dep
-del /f output\*~
-del /f output\*.bak
-del /f test\*.lst
-del /f test\*.bin
-del /f test\*.obj
-del /f test\*.bin
-del /f/s autom4te*.cache
$(RM_F) config.h
$(RM_F) config.log
$(RM_F) config.status
$(RM_F) Makefile
$(RM_RF) *~
$(RM_RF) *.bak
$(RM_RF) *.lst
$(RM_RF) *.bin
$(RM_RF) *.dep
$(RM_F) output\*~
$(RM_F) output\*.bak
$(RM_F) test\*.lst
$(RM_F) test\*.bin
$(RM_F) test\*.obj
$(RM_F) test\*.bin
$(RM_RF) autom4te*.cache

cleaner: clean
-del /f $(PERLREQ)
-del /f *.man
-del /f nasm.spec
$(RM_F) $(PERLREQ)
$(RM_F) *.man
$(RM_F) nasm.spec
rem cd doc && $(MAKE) clean

spotless: distclean cleaner
-del /f doc\Makefile
-del doc\*~
-del doc\*.bak
$(RM_F) doc\Makefile
$(RM_F) doc\*~
$(RM_F) doc\*.bak

strip:

Expand All @@ -394,7 +398,7 @@ EXTERNAL_DEPENDENCIES = 1
# pollute the git logs.
#
msvc.dep: $(PERLREQ) tools\mkdep.pl
$(RUNPERL) tools\mkdep.pl -M Mkfiles\msvc.mak -- $(DEPDIRS)
$(RUNPERL) $(srcdir)\tools\mkdep.pl -M Mkfiles\msvc.mak -- $(DEPDIRS)

dep: msvc.dep

Expand Down
Loading