Files
cdesktop/cde/lib/DtWidget/Makefile.am
Jon Trulson 00dcd9c63d FreeBSD 12: get CDE to build and run
With this patch, CDE (autotools) builds and runs on fbsd 12 now.
fbsd11 should work too, but not yet tested.

You must use gmake - ie:

./configure MAKE=gmake
gmake

Seems all of the BSD's will need to use gmake for now.
2020-01-04 16:26:46 -07:00

41 lines
941 B
Makefile

unixdir = ${prefix}/app-defaults/C
MAINTAINERCLEANFILES = Makefile.in
lib_LTLIBRARIES = libDtWidget.la
AM_CPPFLAGS = -DCDE_INSTALLATION_TOP=${prefix} @DT_INCDIR@
libDtWidget_la_CFLAGS = -DI18N_MSG -DMULTIBYTE
libDtWidget_la_LDFLAGS = -version-info 2:1:0
if LINUX
libDtWidget_la_CFLAGS += -I/usr/include/freetype2
endif
if BSD
libDtWidget_la_CFLAGS += -I/usr/local/include/freetype2
endif
if SOLARIS
libDtWidget_la_CFLAGS += -DNO_REGCOMP
libDtWidget_la_LIBADD = -lXm -lc -lw -lm -lintl
endif
libDtWidget_la_SOURCES = ComboBox.c Control.c DialogBox.c \
DtMsgs.c DtStrDefs.c EditAreaData.c \
EditCalls.c Editor.c Icon.c \
MenuButton.c NewCvt.c SearchCalls.c \
SearchDlg.c SpinBox.c TitleBox.c \
View.c
# cpp this...
BUILT_SOURCES = UNIXbindings
CLEANFILES = UNIXbindings
UNIXbindings: UNIXbindings.cpp
$(RM) $@
$(GENCPP) -P -DXCOMM=# $(AM_CPPFLAGS) $< > $@