File: Makefile.in

package info (click to toggle)
vnc4 4.0-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 28,120 kB
  • ctags: 5,701
  • sloc: cpp: 16,749; ansic: 11,788; sh: 3,015; perl: 819; makefile: 370
file content (20 lines) | stat: -rw-r--r-- 309 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

SRCS = TcpSocket.cxx

OBJS = $(SRCS:.cxx=.o)

DIR_CPPFLAGS = -I$(top_srcdir) @SOCKLEN_T_DEFINE@

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