# 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 (Rainer.Menzner@web.de)
# Date:                02/19/1997
# Last modified:       2004-12-12
#
# Modified by H.Kakugawa to use libtool

LIBTOOL   = ../libtool
SHELL     = /bin/sh
CC        = gcc
CPP       = gcc -E
CFLAGS    = -g -O2 -DT1LIB_IDENT="\"5.1.0\"" -DGLOBAL_CONFIG_DIR="\"${prefix}/share/t1lib\"" -DT1LIB_NO_X11_SUPPORT
OPTIONS   = 
X_LIBS    = 
TOPSRC    = ..
XPM_LIB   = -lXpm
XLIB      =  -lXext -lX11 
LDFLAGS   = 
LDLIBS    = -lm 
AR        = ar rc
RANLIB    = ranlib
RM        = rm -f
X_CFLAGS  = 
YACC      = @YACC@
LEX       = @LEX@
LEXLIB    = @LEXLIB@
ALLCFLAGS = $(CFLAGS)
SUBMAKE   = $(MAKE) 'CC=$(CC)' 'CFLAGS=$(ALLCFLAGS)' 'OPTIONS=$(OPTIONS)'


INSTALL         = /bin/install -c
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA    = ${INSTALL} -m 644
MKINSTALLDIRS   = ../ac-tools/mkinstalldirs
prefix          = /usr/local
exec_prefix     = ${prefix}
includedir      = ${prefix}/include
bindir          = ${exec_prefix}/bin
datadir         = ${prefix}/share
libdir          = ${exec_prefix}/lib
mandir          = ${prefix}/man/man1
manext          = .1
no_x            = yes


# targets to build 

MAIN_TARGET = libt1.la

OBJS = \
	type1afm.lo 

SRCS = \
	type1afm.c 

T1LIB =  ../lib/libt1.la 


all: type1afm

type1afm: $(OBJS) ../lib/t1lib.h
	$(LIBTOOL) --mode=link \
		$(CC) -o type1afm $(LDFLAGS) $(OBJS) $(T1LIB) $(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) type1afm *.o *.lo .libs/* *~ \#*\# *.log *.bak
	-rmdir .libs

install: dummy
	$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
	$(LIBTOOL) --mode=install \
		$(INSTALL_PROGRAM) type1afm $(bindir)/type1afm


uninstall: dummy
	$(LIBTOOL) --mode=uninstall \
		$(RM) $(DESTDIR)$(bindir)/type1afm	


dummy:

# Dependencies of object files 
include .dependencies

