1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# Generated automatically from Makefile.in:boilerplate.mk by configure.
SRCS = TcpSocket.cxx
OBJS = $(SRCS:.cxx=.o)
DIR_CPPFLAGS = -I$(top_srcdir) -DVNC_SOCKLEN_T=socklen_t
library = libnetwork.a
all:: $(library)
$(library): $(OBJS)
rm -f $(library)
$(AR) $(library) $(OBJS)
$(RANLIB) $(library)
DIR_CFLAGS = -DPIC -fPIC
DIR_CXXFLAGS = -DPIC -fPIC
# followed by boilerplate.mk
all::
@subdirs="$(SUBDIRS)"; for d in $$subdirs; do (cd $$d; $(MAKE) $@) || exit 1; done
clean::
@subdirs="$(SUBDIRS)"; for d in $$subdirs; do (cd $$d; $(MAKE) $@) || exit 1; done
clean::
rm -f $(program) $(library) *.o
SHELL = /bin/sh
top_srcdir = ..
CC = gcc
CFLAGS = -Wall -g -O2 -Wall $(DIR_CFLAGS)
CCLD = $(CC)
CXX = c++
CXXFLAGS = -O2 -Wall $(DIR_CXXFLAGS)
CXXLD = $(CXX)
CPPFLAGS =
DEFS =
ALL_CPPFLAGS = $(CPPFLAGS) $(DEFS) $(DIR_CPPFLAGS)
LIBS =
LDFLAGS =
RANLIB = ranlib
AR = ar cq
.SUFFIXES:
.SUFFIXES: .cxx .c .o
.c.o:
$(CC) $(ALL_CPPFLAGS) $(CFLAGS) -c $<
.cxx.o:
$(CXX) $(ALL_CPPFLAGS) $(CXXFLAGS) -c $<
|