Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-07-02 01:09:30 +0400
committerChristopher Faylor <me@cgf.cx>2003-07-02 01:09:30 +0400
commitc57452c817d1a6cd41fc73bebd715a1df1804bc1 (patch)
tree2584dbdb9718559256ff1344408e99a72ee5a06b /winsup/cygserver/Makefile.in
parent350c2f44b8037a70b240b87ba58b2ed0f9534c1a (diff)
First checkins.
Diffstat (limited to 'winsup/cygserver/Makefile.in')
-rw-r--r--winsup/cygserver/Makefile.in50
1 files changed, 50 insertions, 0 deletions
diff --git a/winsup/cygserver/Makefile.in b/winsup/cygserver/Makefile.in
new file mode 100644
index 000000000..beda6279f
--- /dev/null
+++ b/winsup/cygserver/Makefile.in
@@ -0,0 +1,50 @@
+# Makefile for Cygwin server
+# Copyright 2003 Red Hat, Inc.
+
+# This file is part of Cygwin.
+
+# This software is a copyrighted work licensed under the terms of the
+# Cygwin license. Please consult the file "CYGWIN_LICENSE" for
+# details.
+
+SHELL:=@SHELL@
+
+srcdir:=@srcdir@
+VPATH:=@srcdir@
+prefix:=@prefix@
+exec_prefix:=@exec_prefix@
+
+bindir:=@bindir@
+etcdir:=$(exec_prefix)/etc
+program_transform_name:=@program_transform_name@
+
+INSTALL:=@INSTALL@
+INSTALL_PROGRAM:=@INSTALL_PROGRAM@
+INSTALL_DATA:=@INSTALL_DATA@
+
+EXEEXT:=@EXEEXT@
+EXEEXT_FOR_BUILD:=@EXEEXT_FOR_BUILD@
+
+CC:=@CC@
+CC_FOR_TARGET:=$(CC)
+CXX:=@CXX@
+CXX_FOR_TARGET:=$(CXX)
+
+CFLAGS:=@CFLAGS@ -I$(cygwin_source)
+CXXFLAGS:=@CXXFLAGS@ -I$(cygwin_source)
+override CXXFLAGS+=-fno-exceptions -fno-rtti -DHAVE_DECL_GETOPT=0
+
+include $(srcdir)/../Makefile.common
+
+OBJS:= cygserver.o client.o process.o shm.o transport.o transport_pipes.o \
+ transport_sockets.o
+
+CYGWIN_OBJS:=$(cygwin_build)/smallprint.o $(cygwin_build)/version.o \
+ $(cygwin_build)/wincap.o
+
+all: cygserver.exe
+
+install: all
+
+cygserver.exe: $(OBJS) $(CYGWIN_OBJS)
+ $(CXX) -o $@ $^ -lstdc++