2001-11-25 Kevin Vandersloot <kfv101@psu.edu> * port stable libgtop to GNOME 2.0. Too much to detail. pkgconfig is now used. Libs are named libgtop-2.0 etc for parallel install.
23 lines
520 B
Makefile
23 lines
520 B
Makefile
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@
|
|
|
|
INCLUDES = @INCLUDES@
|
|
|
|
lib_LTLIBRARIES = libgtop-2.0.la
|
|
|
|
libgtop_2_0_la_SOURCES = init.c open.c close.c command.c read.c \
|
|
read_data.c write.c lib.c parameter.c \
|
|
sysdeps.c
|
|
|
|
libgtop_2_0_la_LDFLAGS = $(LT_VERSION_INFO)
|
|
|
|
BUILT_SOURCES = lib.c
|
|
|
|
lib.c: lib.pl $(top_builddir)/config.h $(top_srcdir)/features.def
|
|
$(PERL) $(srcdir)/lib.pl < $(top_srcdir)/features.def > lib-t
|
|
mv lib-t lib.c
|
|
|
|
EXTRA_DIST = lib.pl
|
|
|
|
CLEANFILES = lib.c
|
|
|