~ubuntu-branches/ubuntu/lucid/vflib3/lucid

« back to all changes in this revision

Viewing changes to utils/vfl2bdf-2.0.0/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Masayuki Hatta
  • Date: 2002-04-15 12:10:24 UTC
  • Revision ID: james.westby@ubuntu.com-20020415121024-cann32wucyfbq22f
Tags: upstream-3.6.12
ImportĀ upstreamĀ versionĀ 3.6.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Makefile.in for vfl2bdf
 
3
#  by H.Kakugawa
 
4
#
 
5
 
 
6
# -----------------------------------------------------------------------
 
7
default: all
 
8
 
 
9
PROGRAM = vfl2bdf
 
10
 
 
11
LIBTOOL = ../../libtool
 
12
include   ../../make-sub
 
13
 
 
14
 
 
15
 VFLIB_DIR = ../../src
 
16
  PROGRAMS = vfl2bdf
 
17
      SRCS = vfl2bdf.c
 
18
      OBJS = vfl2bdf.o
 
19
 
 
20
all: $(PROGRAMS)
 
21
 
 
22
vfl2bdf: $(OBJS) $(VFLIB_DIR)/libVFlib3.la
 
23
        $(LIBTOOL) --mode=link \
 
24
                $(CC) $(VFCFLAGS) -o $@ vfl2bdf.o \
 
25
                  $(VFLIB_DIR)/libVFlib3.la
 
26
 
 
27
vfl2bdf.o: vfl2bdf.c
 
28
        $(CC) $(VFCFLAGS) -I$(VFLIB_DIR) -c vfl2bdf.c
 
29
 
 
30
install: $(PROGRAM)
 
31
        @$(LIBTOOL) --mode=install \
 
32
           ../../$(INSTALL_PROGRAM) vfl2bdf $(bindir)/vfl2bdf
 
33
uninstall: 
 
34
        @$(LIBTOOL) --mode=uninstall $(RM) $(bindir)/vfl2bdf
 
35
 
 
36
clean::
 
37
        -$(RM) $(PROGRAM)
 
38
veryclean:: clean
 
39
distclean:: clean
 
40
 
 
41
# -----------------------------------------------------------------------