mirror of
https://github.com/anope/anope.git
synced 2026-06-25 17:26:37 +02:00
4e828d3260
git-svn-id: svn://svn.anope.org/anope/trunk@1078 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@802 5417fbe8-f217-4b02-8779-1006273d7864
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
include ../../Makefile.inc.win32
|
|
include ./Makefile.inc.win32
|
|
|
|
OBJECTS= $(SRCS:.c=.dll)
|
|
CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include"
|
|
LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:AnopeInit /export:AnopeFini
|
|
|
|
all: $(OBJECTS) subs
|
|
|
|
distclean: clean spotless
|
|
|
|
.c.dll:
|
|
$(CC) $(CFLAGS) $(IRCTYPE) $< ..\mod_version.c $(LFLAGS)
|
|
|
|
subs:
|
|
@for %i in ( $(SUBS) ); do \
|
|
@if exist %i; @cd %i && $(MAKE) $(MAKEARGS) && cd ..
|
|
|
|
clean: subs-clean
|
|
-@del *.obj
|
|
|
|
subs-clean:
|
|
@for %i in ( $(SUBS) ); do \
|
|
@if exist %i; @cd %i && $(MAKE) $(MAKEARGS) clean && cd ..
|
|
|
|
spotless: clean subs-spotless
|
|
-@del *.dll *.lib *.exp *.manifest
|
|
|
|
subs-spotless:
|
|
@for %i in ( $(SUBS) ); do \
|
|
@if exist %i; @cd %i && $(MAKE) $(MAKEARGS) spotless && cd ..
|
|
|
|
install:
|
|
-@mkdir ..\..\$(DATDEST)\modules
|
|
-@mkdir ..\..\$(DATDEST)\modules\runtime
|
|
-@copy *.dll ..\..\$(DATDEST)\modules
|
|
|
|
subs-install: install
|
|
@for %i in ( $(SUBS) ); do \
|
|
@if exist %i; @cd %i && $(MAKE) $(MAKEARGS) install && cd ..
|
|
|