Ignore:
Timestamp:
Jul 30, 2010 8:34:57 AM (14 years ago)
Author:
dkearney
Message:

adding perl wrapper example to configure and make scripts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/app-fermi/wrapper/Makefile.in

    r1018 r1850  
    11
    22bindir          = @bindir@
    3 datadir         = @datadir@
    4 datarootdir     = @datarootdir@
     3datadir         = @datadir@
     4datarootdir     = @datarootdir@
    55exec_prefix     = @exec_prefix@
    66includedir      = @includedir@
     
    88mandir          = @mandir@
    99prefix          = @prefix@
    10 srcdir          = @srcdir@
     10srcdir          = @srcdir@
    1111
    12 INSTALL         = @INSTALL@
    13 VPATH           = $(srcdir)
    14 SHELL           = @SHELL@
    15 RM              = rm -f
     12INSTALL         = @INSTALL@
     13VPATH           = $(srcdir)
     14SHELL           = @SHELL@
     15RM              = rm -f
    1616
    17 .PHONY: cee python tcl
     17.PHONY: cee python tcl perl
    1818
    19 all:    python tcl cee
     19all:    python tcl cee perl
    2020
    2121cee:
    2222        $(MAKE) -C cee all
    23 python:
     23perl:
     24        $(MAKE) -C perl all
     25python:
    2426        $(MAKE) -C python all
    25 tcl: 
     27tcl:
    2628        $(MAKE) -C tcl all
     29
    2730
    2831install:
    2932        $(MAKE) -C cee install
     33        $(MAKE) -C perl install
    3034        $(MAKE) -C python install
    3135        $(MAKE) -C tcl install
     
    3337clean:
    3438        $(MAKE) -C cee clean
     39        $(MAKE) -C perl clean
    3540        $(MAKE) -C python clean
    3641        $(MAKE) -C tcl clean
    3742
    38 distclean: 
     43distclean:
    3944        $(MAKE) -C cee distclean
     45        $(MAKE) -C perl distclean
    4046        $(MAKE) -C python distclean
    4147        $(MAKE) -C tcl distclean
Note: See TracChangeset for help on using the changeset viewer.