File: Makefile.am

package info (click to toggle)
wmaker 0.96.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 17,416 kB
  • sloc: ansic: 99,483; sh: 7,068; perl: 3,423; makefile: 1,647; lisp: 219; python: 34
file content (33 lines) | stat: -rw-r--r-- 693 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
25
26
27
28
29
30
31
32
33

AUTOMAKE_OPTIONS = no-dependencies

libWMaker_la_LDFLAGS = -version-info 1:1:0
lib_LTLIBRARIES = libWMaker.la

include_HEADERS = WMaker.h

AM_CPPFLAGS = $(DFLAGS) @XCFLAGS@

libWMaker_la_LIBADD = @XLFLAGS@ @XLIBS@

libWMaker_la_SOURCES = 	\
	menu.c 		\
	app.c 		\
	event.c 	\
	command.c	\
	app.h		\
	menu.h

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = wmlib.pc

DISTCLEANFILES = $(pkgconfig_DATA)

wmlib.pc: Makefile
	@echo "Generating $@"
	@echo 'Name: wmlib' > $@
	@echo 'Description: Window Maker interface definitions' >> $@
	@echo 'Version: $(VERSION)' >> $@
	@echo 'Requires: x11' >> $@
	@echo 'Libs: $(lib_search_path) -lWMaker' >> $@
	@echo 'Cflags: $(inc_search_path)' >> $@