mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-21 21:38:00 +01:00
29 lines
549 B
Makefile
29 lines
549 B
Makefile
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
lib_LIBRARIES = libWMaker.a
|
|
|
|
include_HEADERS = WMaker.h
|
|
|
|
INCLUDES = $(DFLAGS) @XCFLAGS@
|
|
|
|
libWMaker_a_SOURCES = \
|
|
menu.c \
|
|
app.c \
|
|
event.c \
|
|
command.c \
|
|
app.h \
|
|
menu.h
|
|
|
|
DISTCLEANFILES = wmlib.pc
|
|
|
|
install-exec-local:
|
|
@$(NORMAL_INSTALL)
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir)/pkgconfig
|
|
@list='wmlib.pc'; for p in $$list; do \
|
|
if test -f $$p; then \
|
|
echo "$(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/pkgconfig/"; \
|
|
$(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/pkgconfig/; \
|
|
else :; fi; \
|
|
done
|