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

Use NMake batch-rules for compilation #717

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Use NMake batch-rules for compilation
  • Loading branch information
chemodax authored Oct 2, 2022
commit a8e2450fc7cdea3e5cf41e4675ee88684957089e
6 changes: 3 additions & 3 deletions win32/Makefile.msc
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ minigzip_d.exe: minigzip.obj $(IMPLIB)
if exist [email protected] \
mt -nologo -manifest [email protected] -outputresource:$@;1

{$(TOP)}.c.obj:
{$(TOP)}.c.obj::
$(CC) -c $(WFLAGS) $(CFLAGS) $<

{$(TOP)/test}.c.obj:
{$(TOP)/test}.c.obj::
$(CC) -c -I$(TOP) $(WFLAGS) $(CFLAGS) $<

{$(TOP)/contrib/masmx64}.c.obj:
{$(TOP)/contrib/masmx64}.c.obj::
$(CC) -c $(WFLAGS) $(CFLAGS) $<

{$(TOP)/contrib/masmx64}.asm.obj:
Expand Down