File: Makefile.in

package info (click to toggle)
t1lib0 0.7.1-5
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,740 kB
  • ctags: 2,569
  • sloc: ansic: 20,709; sh: 2,298; makefile: 878; python: 532
file content (99 lines) | stat: -rw-r--r-- 1,949 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# 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
#                      clean
#
# Author:              Rainer Menzner (rmz@neuroinformatik.ruhr-uni-bochum.de)
# Date:                04/06/1997
# Last modified:       03/11/1998
#

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@

sharedlibfullname = @SHARED_T1LIB_FULLNAME@
sharedlibname     = @SHARED_T1LIB_NAME@
t1lib_version     = @T1LIB_VERSION@
t1lib_revision    = @T1LIB_REVISION@
t1lib_patchlevel  = @T1LIB_PATCHLEVEL@

# targets to build: 

OBJS = \
	arith.o \
	curves.o \
	fontfcn.o \
	hints.o \
	lines.o \
	objects.o \
	paths.o \
	regions.o \
	scanfont.o \
	spaces.o \
	t1io.o \
	t1snap.o \
	t1stub.o \
	token.o \
	type1.o \
	util.o 


all: $(OBJS)


.PHONY: clean

clean: dummy
	$(RM) *.o
	$(RM) *~ *.bak \#*\#


install: dummy


dummy:


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

include .dependencies