#
#  File: Makefile
#  Author: Claes M. Nyberg <md0claes@mdstud.chalmers.se>
#  Description: SAdoor compiling rules.
#  Version: 1.0
#  Date: Sun Dec 14 22:21:48 CET 2003
#
#  Copyright (c) 2003 Claes M. Nyberg <md0claes@mdstud.chalmers.se>
#  All rights reserved, all wrongs reversed.
#
#  Redistribution and use in source and binary forms, with or without
#  modification, are permitted provided that the following conditions
#  are met:
#
#  1. Redistributions of source code must retain the above copyright
#     notice, this list of conditions and the following disclaimer.
#  2. Redistributions in binary form must reproduce the above copyright
#     notice, this list of conditions and the following disclaimer in the
#     documentation and/or other materials provided with the distribution.
#  3. The name of author may not be used to endorse or promote products
#     derived from this software without specific prior written permission.
#
#  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
#  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
#  AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
#  THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
#  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
#  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
#  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
#  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
#  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
#  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#   

#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
CC           = mingw32-gcc
CCRC         = mingw32-windres
STRIP        = mingw32-strip
CFLAGS       = -Wall -g3 -D"_WIN32_IE = 0x300"
LDFLAGS      = -mwindows -lwsock32 -lwpcap -lwinmm -lcomctl32
SADOOR_OBJS  = bfish_cfb.o bfish_decrypt.o bfish_encrypt.o bfish_keyinit.o bfish_ofb.o \
               capture.o command.o conn.o connloop.o log.o mksadb.o net.o utils.o \
               packet_analyze.o random.o replay.o saconsole.o sadb_writeraw.o sadoor.o\
               sadc.o sapc_lexer.o sapc_parser.o 
SADOOR_RES   = sadoor.res # Generated elsewhere
SADOOR_PROG  = sadoor.exe

${SADOOR_PROG}: ${SADOOR_OBJS} res
	${CC} -o $@ ${SADOOR_OBJS} ${LDFLAGS} ${SADOOR_RES}.o 
	${STRIP} ${SADOOR_PROG}

# Devel option
move: ${SADOOR_PROG}
	cp -f ${SADOOR_PROG} /virtual/sadoor/${SADOOR_PROG}

res: ${SADOOR_RES}
	${CCRC} -o ${SADOOR_RES}.o ${SADOOR_RES}

clean:
	rm -f ${SADOOR_OBJS} ${SADOOR_PROG} ${SADOOR_RES}.o
