Also, rework the way we build convenience libs for the classes to use libtool. This fixes some potential linking issues and dependency checking. Next up will be to see if we can link and install it, along with it's message catalogs, resources, etc.
21 lines
419 B
Makefile
21 lines
419 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
noinst_PROGRAMS = dfiles pmaker msgsets
|
|
|
|
noinst_SCRIPTS = treeres
|
|
|
|
LOCAL_SED_DEFINES = -e 's|PERL|$(PERL)|g'
|
|
|
|
dfiles_SOURCES = dfiles.c
|
|
|
|
pmaker_SOURCES = pmaker.c
|
|
|
|
# JET - this one migth need to be regenned via the lex file someday...
|
|
# Maybe it should always be regenned?
|
|
msgsets_SOURCES = msgsets.C
|
|
|
|
treeres: treeres.src
|
|
$(RM) $@
|
|
$(SED) $(LOCAL_SED_DEFINES) $< > $@
|
|
chmod +x $@
|