diff options
Diffstat (limited to 'src/modules/makefile.win32')
-rw-r--r-- | src/modules/makefile.win32 | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/modules/makefile.win32 b/src/modules/makefile.win32 deleted file mode 100644 index fffa51d74..000000000 --- a/src/modules/makefile.win32 +++ /dev/null @@ -1,41 +0,0 @@ -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:init_module /export:destroy_module - -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 .. - |