# Makefile.in
# 
# This file is part of the t1lib-package! See documentation and Readme files
# of the t1lib-package for copyright restrictions.
#
# Targets provided: 
#                      all (default)
#                      install
#                      uninstall
#                      clean
#
# Author:              Rainer Menzner (rmz@neuroinformatik.ruhr-uni-bochum.de)
# Date:                04/06/1997
# Last modified:       2000-01-25
#
# Modified by H.Kakugawa to use libtool

LIBTOOL   = ../libtool
SHELL     = /bin/sh
CC        = @CC@
CPP       = @CPP@
CFLAGS    = @CFLAGS@
OPTIONS   = @OPTIONS@
X_LIBS    = @X_LIBS@
TOPSRC    = @top_srcdir@
XPM_LIB   = -lXpm
XLIB      = @X_PRE_LIBS@ -lXext -lX11 @X_EXTRA_LIBS@
LDFLAGS   = @LDFLAGS@
LDLIBS    = @LDLIBS@ 
AR        = ar rc
RANLIB    = @RANLIB@
RM        = rm -f
X_CFLAGS  = @X_CFLAGS@
YACC      = @YACC@
LEX       = @LEX@
LEXLIB    = @LEXLIB@
ALLCFLAGS = $(CFLAGS)
SUBMAKE   = $(MAKE) 'CC=$(CC)' 'CFLAGS=$(ALLCFLAGS)' 'OPTIONS=$(OPTIONS)'
@SET_MAKE@

INSTALL         = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA    = @INSTALL_DATA@
MKINSTALLDIRS   = @top_srcdir@/ac-tools/mkinstalldirs
prefix          = @prefix@
exec_prefix     = @exec_prefix@
includedir      = @includedir@
bindir          = @bindir@
datadir         = @datadir@
libdir          = @libdir@
mandir          = @mandir@/man1
manext          = .1
no_x            = @no_x@


# targets to build 

MAIN_TARGET = @MAIN_TARGET@

OBJS = \
	xglyph.lo 

SRCS = \
	xglyph.c 

T1LIB  = ../lib/libt1.la
T1LIBX = ../lib/libt1x.la
XAWLIB = -lXaw -lXt -lXmu


all: xglyph


xglyph: $(OBJS) $(T1LIBX) $(T1LIB)
	$(LIBTOOL) --mode=link \
		$(CC) -o xglyph $(LDFLAGS) $(OBJS) $(T1LIBX) $(T1LIB) \
			        $(X_LIBS) $(XAWLIB) $(XLIB) $(LDLIBS)

.SUFFIXES: .lo
.c.lo:
	$(LIBTOOL) --mode=compile \
		$(CC) -c $(CPPFLAGS) $(CFLAGS) $<


.PHONY: clean


dependencies: dummy 
	gcc -MM *.c | sed 's/\.o:/.lo:/g' > .dependencies 

clean: dummy
	$(RM) xglyph *.lo *.o .libs/* *~ \#*\# *.log *.bak
	-rmdir .libs


install: dummy
	$(MKINSTALLDIRS) $(bindir)
	$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xglyph $(bindir)/xglyph


uninstall: dummy
	$(LIBTOOL) --mode=uninstall $(RM) -f $(bindir)/xglyph	


dummy:

# Dependencies of object files (generated by "gcc -MM *.c"):
include .dependencies