Update Makefile.win

This commit is contained in:
Vladimir Dubrovin 2025-03-14 20:59:28 +03:00 committed by GitHub
parent eaf66dc8d1
commit 5a6e9c92e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,5 +33,5 @@ PLUGINS = utf8tocp1251 WindowsAuthentication TrafficPlugin StringsPlugin PCREPlu
include Makefile.inc
allplugins:
@list='$(PLUGINS)'; for p in $$list; do cp Makefile Makefile.var plugins/$$p; cd plugins/$$p ; make ; rm *.o ; cd ../.. ; done
for /D %%i in ($(PLUGINS)) do (copy Makefile plugins\%%i && copy Makefile.var plugins\%%i && cd plugins\%%i && nmake && del *.o &&cd ..\..)