correct afterclean

This commit is contained in:
z3APA3A 2020-11-22 02:10:32 +03:00
parent 3ba16310c5
commit 828e00e668
4 changed files with 6 additions and 5 deletions

View File

@ -8,8 +8,9 @@ all:
clean: clean:
@$(REMOVECOMMAND) *$(OBJSUFFICS) $(COMPFILES) @$(REMOVECOMMAND) *$(OBJSUFFICS) $(COMPFILES)
@cd src && $(MAKE) clean @cd src
cd .. $(MAKE) clean
@cd ..
@$(AFTERCLEAN) @$(AFTERCLEAN)

View File

@ -33,7 +33,7 @@ VERFILE = 3proxy.res $(VERFILE)
VERSION = $(VERSION) VERSION = $(VERSION)
VERSIONDEP = 3proxy.res $(VERSIONDEP) VERSIONDEP = 3proxy.res $(VERSIONDEP)
BUILDDATE = $(BUILDDATE) BUILDDATE = $(BUILDDATE)
AFTERCLEAN = del src/*.res AFTERCLEAN = if exist src\*.res del src\*.res
include Makefile.inc include Makefile.inc

View File

@ -30,7 +30,7 @@ COMPATLIBS =
VERFILE = 3proxy.res $(VERFILE) VERFILE = 3proxy.res $(VERFILE)
VERSIONDEP = 3proxy.res $(VERSIONDEP) VERSIONDEP = 3proxy.res $(VERSIONDEP)
PLUGINS = utf8tocp1251 WindowsAuthentication TrafficPlugin StringsPlugin PCREPlugin FilePlugin SSLPlugin PLUGINS = utf8tocp1251 WindowsAuthentication TrafficPlugin StringsPlugin PCREPlugin FilePlugin SSLPlugin
AFTERCLEAN = del src/*.res AFTERCLEAN = del src\*.res
include Makefile.inc include Makefile.inc

View File

@ -31,7 +31,7 @@ MAKEFILE = Makefile.msvcARM64
PLUGINS = utf8tocp1251 WindowsAuthentication TrafficPlugin StringsPlugin PCREPlugin FilePlugin PLUGINS = utf8tocp1251 WindowsAuthentication TrafficPlugin StringsPlugin PCREPlugin FilePlugin
VERFILE = 3proxy.res $(VERFILE) VERFILE = 3proxy.res $(VERFILE)
VERSIONDEP = 3proxy.res $(VERSIONDEP) VERSIONDEP = 3proxy.res $(VERSIONDEP)
AFTERCLEAN = del src/*.res AFTERCLEAN = del src\*.res
include Makefile.inc include Makefile.inc