You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
480 B
25 lines
480 B
4 years ago
|
if INCLUDED_POPT
|
||
|
|
||
|
INCLUDES = -I$(top_srcdir)/include
|
||
|
|
||
|
noinst_HEADERS = findme.h poptint.h system.h popt.h
|
||
|
|
||
|
noinst_LTLIBRARIES = libpopt.la
|
||
|
|
||
|
libpopt_la_SOURCES = popt.c findme.c poptparse.c poptconfig.c popthelp.c
|
||
|
|
||
|
.PHONY: sources
|
||
|
sources:
|
||
|
@echo $(libpopt_la_SOURCES:%=popt/%)
|
||
|
|
||
|
.PHONY: lclint
|
||
|
lclint:
|
||
|
lclint ${DEFS} ${INCLUDES} ${libpopt_la_SOURCES}
|
||
|
|
||
|
endif
|
||
|
|
||
|
EXTRA_DIST = \
|
||
|
findme.c findme.h poptint.h system.h popt.c popt.h \
|
||
|
poptparse.c poptconfig.c popthelp.c
|
||
|
|