2004-03-17 02:34:41 +03:00
|
|
|
# -*- makefile -*-
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
noinst_LTLIBRARIES = libwin.la
|
2004-03-17 02:34:41 +03:00
|
|
|
|
|
|
|
# Source code files
|
|
|
|
|
|
|
|
headers = \
|
|
|
|
win.h
|
|
|
|
|
2004-03-17 22:06:06 +03:00
|
|
|
libwin_la_SOURCES = \
|
2004-03-17 02:34:41 +03:00
|
|
|
$(headers) \
|
|
|
|
win.c
|
|
|
|
|
|
|
|
# Conditionally install the header files
|
|
|
|
|
|
|
|
if WANT_INSTALL_HEADERS
|
2004-03-17 22:06:06 +03:00
|
|
|
lamdir = $(includedir)/lam/win
|
2004-03-17 02:34:41 +03:00
|
|
|
lam_HEADERS = $(headers)
|
|
|
|
else
|
|
|
|
lamdir = $(includedir)
|
|
|
|
endif
|