#    Copyright (C) 2012 NewestTools.com(AlexLe)
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 2 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>. 

TARGETNAME=InnoInstExt

CC=cl.exe
LINK=link.exe
CFLAGS=/O1
LDFLAGS_DLL=/LD
LIBS=user32.lib Wintrust.lib Crypt32.lib
INCLUDES=-I..\..\utils -I..\..\inc

SRCS=InnoInstExt.cpp\
    ../../utils/DbgPrintf.cpp


..\..\out\$(TARGETNAME).dll: $(SRCS)
	if not exist ..\..\out\$(TARGETNAME) mkdir ..\..\out\$(TARGETNAME)
	$(CC) /Fo../../out/$(TARGETNAME)/ $(INCLUDES) $(CFLAGS) $(LDFLAGS_DLL) $^ $(LIBS)   /link /DEF:dll.def /OUT:$@ /IMPLIB:..\..\out\$(TARGETNAME)\$(TARGETNAME).lib
	

all: ..\..\out\$(TARGETNAME).dll


