File: Makefile.am

package info (click to toggle)
dxflib 3.17.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 648 kB
  • sloc: cpp: 6,375; makefile: 38
file content (33 lines) | stat: -rw-r--r-- 773 bytes parent folder | download
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
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = dxflib.pc

BASE_DIR = ./src

BASE_SRC = \
		$(BASE_DIR)/dl_dxf.cpp \
		$(BASE_DIR)/dl_writer_ascii.cpp

BASE_INS = \
		$(BASE_DIR)/dl_attributes.h \
		$(BASE_DIR)/dl_codes.h \
		$(BASE_DIR)/dl_creationadapter.h \
		$(BASE_DIR)/dl_creationinterface.h \
		$(BASE_DIR)/dl_dxf.h \
		$(BASE_DIR)/dl_entities.h \
		$(BASE_DIR)/dl_exception.h \
		$(BASE_DIR)/dl_extrusion.h \
		$(BASE_DIR)/dl_global.h \
		$(BASE_DIR)/dl_writer.h \
		$(BASE_DIR)/dl_writer_ascii.h

lib_LTLIBRARIES = libdxflib.la
libdxflib_la_SOURCES = $(BASE_SRC)
libdxflib_la_includedir=$(includedir)/dxflib
libdxflib_la_include_HEADERS = $(BASE_INS)
libdxflib_la_LDFLAGS = -version-number 3:17:0

testing:
	(cd ./test ; make)

docu:
	-(doxygen ./doxygen.cfg)