File: makefile

package info (click to toggle)
flxmlrpc 0.1.4-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,056 kB
  • sloc: sh: 11,511; cpp: 3,648; makefile: 63
file content (19 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# makefile written for gnu make
CXX			= g++ 

DEBUG		= -g
OPTIMIZE	= -O2
GCCWARN		= -Wall
CPPFLAGS	= `pkg-config flxmlrpc --cflags`
CXXFLAGS	= $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(CPPFLAGS)
LDLIBS		= `pkg-config flxmlrpc --libs`

TESTS		= HelloClient HelloServer TestBase64Client TestBase64Server TestValues TestXml Validator

all:		$(TESTS)

$(TESTS):

clean:
		rm -f *.o
		rm -f $(TESTS)