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

« back to all changes in this revision

Viewing changes to utils/vflx11-2.0.1/Imakefile.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
 * Imakefile.in for vflx11
 
3
 *  by H.Kakugawa
 
4
 */
 
5
 
 
6
/* ----------------------------------------------------------------------- */
 
7
makedefault: default
 
8
 
 
9
LIBTOOL = ../../libtool
 
10
include ../../make-sub
 
11
 
 
12
/* ----------------------------------------------------------------------- */
 
13
 
 
14
VFLIB_DIR = ../../src
 
15
 
 
16
 PROGRAMS = vflx11
 
17
     SRCS = vflx11.c
 
18
     OBJS = vflx11.o
 
19
 
 
20
default all:: $(PROGRAMS)
 
21
 
 
22
vflx11: $(OBJS) $(VFLIB_DIR)/libVFlib3.la
 
23
        $(RM) $@
 
24
        $(LIBTOOL) --mode=link \
 
25
                $(CC) -o $@ $(OBJS) \
 
26
                  $(LDOPTIONS) $(XLIB) $(VFLIB_DIR)/libVFlib3.la \
 
27
                  
 
28
vflx11s: $(OBJS) $(VFLIB_DIR)/libVFlib3.la
 
29
        $(RM) $@
 
30
        $(LIBTOOL) --mode=link \
 
31
                $(CC) -o $@ -static $(OBJS) \
 
32
                  $(LDOPTIONS) $(XLIB) $(VFLIB_DIR)/libVFlib3.la 
 
33
 
 
34
vflx11.o: vflx11.c
 
35
        $(CC) $(VFCFLAGS) -I$(INCROOT) -c vflx11.c 
 
36
 
 
37
install:: $(PROGRAMS)
 
38
        $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) vflx11 $(bindir)/vflx11
 
39
uninstall:: 
 
40
        $(LIBTOOL) --mode=uninstall $(RM) $(bindir)/vflx11
 
41
 
 
42
clean::
 
43
        -$(RM) $(PROGRAMS) vflx11s
 
44
veryclean:: clean
 
45
distclean:: clean
 
46
 
 
47
/* ----------------------------------------------------------------------- */