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.
|
|
|
|
|
2015-11-07 04:08:24 +00:00
|
|
|
# Use make -n to see the actual command-lines make would run.
|
|
|
|
|
|
|
|
default : all
|
|
|
|
|
2012-07-11 18:50:51 +00:00
|
|
|
PREFIX ?= /usr/local
|
2015-11-07 04:08:24 +00:00
|
|
|
UNIX_ADAPTER_EXE ?= console.exe
|
|
|
|
|
|
|
|
# Include config.mk but complain if it hasn't been created yet.
|
|
|
|
ifeq "$(wildcard config.mk)" ""
|
|
|
|
$(error config.mk does not exist. Please run ./configure)
|
|
|
|
endif
|
|
|
|
include config.mk
|
|
|
|
|
2015-11-08 03:19:03 +00:00
|
|
|
COMMON_CXXFLAGS += \
|
|
|
|
-DWINPTY_VERSION=$$(cat VERSION.txt | tr -d '\r\n') \
|
|
|
|
-DWINPTY_VERSION_SUFFIX=$(VERSION_SUFFIX) \
|
|
|
|
-DWINPTY_COMMIT_HASH=$(COMMIT_HASH) \
|
2015-11-07 04:08:24 +00:00
|
|
|
-MMD -Wall \
|
|
|
|
-DUNICODE \
|
|
|
|
-D_UNICODE \
|
2015-11-08 03:19:03 +00:00
|
|
|
-D_WIN32_WINNT=0x0501
|
|
|
|
|
|
|
|
UNIX_CXXFLAGS += \
|
|
|
|
$(COMMON_CXXFLAGS)
|
|
|
|
|
|
|
|
MINGW_CXXFLAGS += \
|
|
|
|
$(COMMON_CXXFLAGS) \
|
2015-11-07 04:08:24 +00:00
|
|
|
-fno-exceptions \
|
|
|
|
-fno-rtti \
|
|
|
|
-O2
|
2012-07-11 18:50:51 +00:00
|
|
|
|
2015-11-07 04:08:24 +00:00
|
|
|
MINGW_LDFLAGS += -static -static-libgcc -static-libstdc++
|
|
|
|
UNIX_LDFLAGS += $(UNIX_LDFLAGS_STATIC)
|
2012-01-22 01:30:41 +00:00
|
|
|
|
2015-11-07 04:08:24 +00:00
|
|
|
include agent/subdir.mk
|
|
|
|
include debugserver/subdir.mk
|
|
|
|
include libwinpty/subdir.mk
|
|
|
|
include tests/subdir.mk
|
|
|
|
include unix-adapter/subdir.mk
|
|
|
|
|
|
|
|
all : $(ALL_TARGETS)
|
|
|
|
|
|
|
|
tests : $(TEST_PROGRAMS)
|
2015-08-23 23:02:23 +00:00
|
|
|
|
2012-07-11 18:50:51 +00:00
|
|
|
install : all
|
|
|
|
mkdir -p $(PREFIX)/bin
|
2015-11-07 04:08:24 +00:00
|
|
|
install -m 755 -p -s build/$(UNIX_ADAPTER_EXE) $(PREFIX)/bin
|
2015-10-15 21:47:00 +00:00
|
|
|
install -m 755 -p -s build/winpty.dll $(PREFIX)/bin
|
|
|
|
install -m 755 -p -s build/winpty-agent.exe $(PREFIX)/bin
|
|
|
|
install -m 755 -p -s build/winpty-debugserver.exe $(PREFIX)/bin
|
2012-07-11 18:50:51 +00:00
|
|
|
|
2012-01-22 01:30:41 +00:00
|
|
|
clean :
|
2015-11-07 04:08:24 +00:00
|
|
|
rm -fr build
|
2012-04-17 16:50:19 +00:00
|
|
|
|
|
|
|
distclean : clean
|
2015-11-07 04:08:24 +00:00
|
|
|
rm -f config.mk
|
|
|
|
|
|
|
|
.PHONY : default all tests install clean distclean
|
|
|
|
|
|
|
|
build/mingw/%.o : %.cc
|
|
|
|
@echo Compiling $<
|
|
|
|
@mkdir -p $$(dirname $@)
|
|
|
|
@$(MINGW_CXX) $(MINGW_CXXFLAGS) -I include -c -o $@ $<
|
2015-08-23 23:02:23 +00:00
|
|
|
|
2015-11-07 04:08:24 +00:00
|
|
|
build/unix/%.o : %.cc
|
|
|
|
@echo Compiling $<
|
|
|
|
@mkdir -p $$(dirname $@)
|
|
|
|
@$(UNIX_CXX) $(UNIX_CXXFLAGS) -I include -c -o $@ $<
|