diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-04-21 15:38:16 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-04-21 15:38:16 +0000 |
commit | 49491770383e66f1b8074d8b0f80026e3086e9d8 (patch) | |
tree | 8a0613058912df632d7dba409dce08e191630dde /src | |
parent | ab7a624ef91b86c3cc9f30c6ab202b5a34b1f72b (diff) |
BUILD : 1.7.8 (707) BUGS : NOTES : Added src/tools/Makefile.win32, which was missing since last commit
git-svn-id: svn://svn.anope.org/anope/trunk@707 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@515 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/Makefile.win32 | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/tools/Makefile.win32 b/src/tools/Makefile.win32 new file mode 100644 index 000000000..2a60490bf --- /dev/null +++ b/src/tools/Makefile.win32 @@ -0,0 +1,25 @@ +include ../../Makefile.inc.win32 + +SRCS=anopesmtp.c epona2anope.c db-merger.c +OBJECTS= $(SRCS:.c=.exe) +CFLAGS=$(CFLAGS) /I"../../include" +LFLAGS=/link wsock32.lib $(LIBS) $(LFLAGS) + +all: $(OBJECTS) + +distclean: clean spotless + +.c.exe: + $(CC) $(CFLAGS) $< $(LFLAGS) + +clean: + -@del *.obj + +spotless: clean + -@del *.exe *.lib *.exp + +install: FRC + -@mkdir ..\..\$(DATDEST)\tools + -@copy *.exe ..\..\$(DATDEST)\tools + +FRC: |