1
0
forked from vitrine/wmaker
Files
wmaker/wmlib/Makefile.am
Dan Cross d91275d959 memory: replace most of memory.c with Rust mem
Replace `wmalloc` et al with wrappers around the Rust allocation
library.
2025-10-14 02:55:03 +00:00

35 lines
742 B
Makefile

AUTOMAKE_OPTIONS = no-dependencies
libWMaker_la_LDFLAGS = -version-info 1:1:0
lib_LTLIBRARIES = libWMaker.la
include_HEADERS = WMaker.h
AM_CPPFLAGS = $(DFLAGS) @XCFLAGS@ \
-I$(top_srcdir)/WINGs -I$(top_builddir)/WINGs
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)' >> $@