Changeset 1183


Ignore:
Timestamp:
Oct 9, 2008, 9:54:13 PM (16 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.in

    r1134 r1183  
    1212INSTALL         = @INSTALL@
    1313SHELL           = @SHELL@
     14MKDIR_P         = @MKDIR_P@
    1415RM              = rm -f
    1516VPATH           = $(srcdir)
     
    2021bn              := $(shell basename $(prefix))
    2122
    22 tarfile         = rappture-$(os)-$(machine)-$(build_date).tar.gz
     23binary_tarfile  = rappture-$(os)-$(machine)-$(build_date).tar.gz
     24source_tarfile  = rappture-src-$(build_date).tar.gz
    2325
    2426ENABLE_GUI      = @ENABLE_GUI@
     
    7173
    7274package:
    73         tar -C $(prefix) -czlf $(tarfile) .
     75        tar -C $(prefix) -czlf $(binary_tarfile) .
     76
     77distrib:
     78        $(RM) -r exported
     79        $(MKDIR_P) exported
     80        (cd exported; \
     81            svn exported https://repo.nanohub.org/svn/rappture/trunk rappture)
     82        tar -C exported -czlf $(source_tarfile) rappture
     83        $(RM) -r exported
Note: See TracChangeset for help on using the changeset viewer.