2012-03-23 10:11:34 +00:00
|
|
|
# Copyright (c) 2011-2012 Ryan Prichard
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to
|
|
|
|
# deal in the Software without restriction, including without limitation the
|
|
|
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
# sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
# IN THE SOFTWARE.
|
|
|
|
|
2012-01-22 01:30:41 +00:00
|
|
|
include ../config.mk
|
|
|
|
include ../config-mingw.mk
|
|
|
|
|
2012-03-25 09:29:37 +00:00
|
|
|
LIBRARY = ../build/winpty.dll
|
2012-12-20 11:06:58 +00:00
|
|
|
OBJECTS = winpty.o DebugClient.o
|
2012-01-22 01:30:41 +00:00
|
|
|
LDFLAGS += -shared -static-libgcc -static-libstdc++
|
|
|
|
|
|
|
|
CXXFLAGS += \
|
|
|
|
-I../include \
|
|
|
|
-DUNICODE \
|
|
|
|
-D_UNICODE \
|
|
|
|
-D_WIN32_WINNT=0x0501 \
|
2012-03-25 09:29:37 +00:00
|
|
|
-DWINPTY \
|
2012-01-22 01:30:41 +00:00
|
|
|
-fno-exceptions \
|
|
|
|
-fno-rtti
|
|
|
|
|
|
|
|
$(LIBRARY) : $(OBJECTS)
|
|
|
|
@echo Linking $@
|
|
|
|
@$(CXX) $(LDFLAGS) -o $@ $^
|
|
|
|
|
|
|
|
.PHONY : clean
|
|
|
|
clean :
|
|
|
|
rm -f $(LIBRARY) *.o *.d
|
2012-02-10 10:09:38 +00:00
|
|
|
|
|
|
|
-include $(OBJECTS:.o=.d)
|