File: Makefile

package info (click to toggle)
qpxtool 0.7.1.002-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,548 kB
  • ctags: 4,980
  • sloc: cpp: 33,506; sh: 711; makefile: 418; ansic: 4
file content (24 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SRC  = common_functions \
	qpx_transport \
	qpx_mmc \
	qpx_mmc_css \
	threads \
	sense

HDRS = include/qpx_mmc.h \
	include/qpx_transport.h \
	include/common_functions.h \
	include/threads.h \
	include/sense.h

LIBN = qpxtransport
SRCS = $(patsubst %,%.cpp, $(SRC))
OBJS = $(patsubst %.cpp,%.o,$(SRCS))

VER_MAJOR  = 0
VER_MINOR  = 7
VER_MICRO  = 0

LDLIBS += $(LIBS_HW) $(LIBS_THREAD) $(LIBS_INET) $(QPXTRANSPORT_EXTRA_LIBS)

include ../Makefile.lib