Skip to content

Commit

Permalink
fix appveyor build: shorten command line for building lscrtl.dll
Browse files Browse the repository at this point in the history
  • Loading branch information
LADSoft committed Sep 23, 2024
1 parent 520fc0e commit 2663d36
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/clibs/platform/win32/lscrtl/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,10 @@ B = /b
endif

WINOBJS = $(shell dir $(B) $(WINOBJECT)\\*.o)
DLLOBJS = $(shell dir $(B) $(CLIBOBJECT)\\*.o)

.\lscrtl.dll: .\lscrtl.o .\c0dll.o $(RCFILE).res
-del $@
$(LINK) $(LINKFLAGS) /mx /T:DLL32 /DIMAGEBASE=0x10800000 -o.\lscrtl .\lscrtl.o .\c0dll.o $(foreach dir, $(filter-out c0.o c0lsstartup.o, $(WINOBJS)), $(WINOBJECT)\$(dir)) $(foreach dir, $(filter-out c0.o c0lsstartup.o, $(DLLOBJS)), $(CLIBOBJECT)\$(dir)) $(SYSOBJECT)\climp.l $(RCFILE).res
$(LINK) $(LINKFLAGS) /mx /T:DLL32 /DIMAGEBASE=0x10800000 -o.\lscrtl .\lscrtl.o .\c0dll.o $(foreach dir, $(filter-out c0.o c0lsstartup.o, $(WINOBJS)), $(WINOBJECT)\$(dir)) $(CLIBOBJECT)\* $(SYSOBJECT)\climp.l $(RCFILE).res
del lscrtl.l
oimplib -C1 lscrtl.l lscrtl.dll
move lscrtl.dll $(LSCRTLOBJECT)
Expand Down

0 comments on commit 2663d36

Please sign in to comment.