5 include $(srcdir)/mk/Variables.mk
7 CFLAGS += -Wall -Wno-pointer-sign
8 CFLAGS += -DVERSION='"$(VERSION)"'
11 DESKTOP := $(wildcard *.desktop)
15 #################################################################
16 # poor man's autoconf ;-)
18 include mk/Autoconf.mk
22 HAVE_GTK := $(call ac_pkg_config,gtk+-x11-2.0)
23 HAVE_VTE := $(call ac_pkg_config,vte)
26 #################################################################
29 ifeq ($(HAVE_GTK)$(HAVE_VTE),yesyes)
31 gamt : CFLAGS += -Wno-strict-prototypes
32 gamt : pkglst += gtk+-x11-2.0 vte
35 CFLAGS += $(shell test "$(pkglst)" != "" && pkg-config --cflags $(pkglst))
36 LDLIBS += $(shell test "$(pkglst)" != "" && pkg-config --libs $(pkglst))
38 #################################################################
43 $(INSTALL_DIR) $(bindir) $(appdir) $(mandir)/man1 $(mandir)/man7
44 $(INSTALL_BINARY) $(TARGETS) $(bindir)
45 $(INSTALL_SCRIPT) amttool $(bindir)
46 $(INSTALL_DATA) $(DESKTOP) $(appdir)
47 $(INSTALL_DATA) gamt.man $(mandir)/man1/gamt.1
48 $(INSTALL_DATA) amtterm.man $(mandir)/man1/amtterm.1
49 $(INSTALL_DATA) amttool.man $(mandir)/man1/amttool.1
50 $(INSTALL_DATA) amt-howto.man $(mandir)/man7/amt-howto.7
59 #################################################################
61 amtterm: amtterm.o redir.o tcp.o
62 gamt: gamt.o redir.o tcp.o parseconfig.o
64 #################################################################
67 include mk/Maintainer.mk