Changeset bd84570


Ignore:
Timestamp:
08/26/16 20:30:22 (8 years ago)
Author:
Hal Finkel <hfinkel@…>
Branches:
master, pympi
Children:
ef727a6
Parents:
95f86a3
git-author:
Hal Finkel <hfinkel@…> (08/26/16 20:30:22)
git-committer:
Hal Finkel <hfinkel@…> (08/26/16 20:30:22)
Message:

Add simple python interface from Dan

Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • GNUmakefile

    rfc4fc2f rbd84570  
    6060        -Ithirdparty/blosc/internal-complibs/zstd-0.7.4/decompress 
    6161 
    62 BASE_CPPFLAGS := $(BLOSC_CPPFLAGS) -D__STDC_CONSTANT_MACROS 
     62BASE_CPPFLAGS := $(BLOSC_CPPFLAGS) -I. -D__STDC_CONSTANT_MACROS 
    6363 
    6464FEDIR = frontend 
     
    142142FE_SHARED := -shared 
    143143endif 
    144 $(FEDIR)/GenericIOSQLite.so: $(FEDIR)/GenericIOSQLite.o $(FEDIR)/GenericIO.o 
     144 
     145$(FEDIR)/libpygio.so: $(FEDIR)/GenericIO.o $(FEDIR)/python/lib/gio.o $(FE_BLOSC_O) 
     146        $(CXX) $(FE_CFLAGS) $(FE_SHARED) -o $@ $^ 
     147 
     148$(FEDIR)/gio.py: python/gio.py 
     149        cp -f $< $@ 
     150 
     151$(FEDIR)/GenericIOSQLite.so: $(FEDIR)/GenericIOSQLite.o $(FEDIR)/GenericIO.o $(FE_BLOSC_O) 
    145152        $(CXX) $(FE_CFLAGS) $(FE_SHARED) -o $@ $^ 
    146153 
     
    184191        $(MPICXX) $(MPI_CFLAGS) -o $@ $^  
    185192 
    186 frontend-progs: $(FEDIR)/GenericIOPrint $(FEDIR)/GenericIOVerify 
     193frontend-progs: $(FEDIR)/GenericIOPrint $(FEDIR)/GenericIOVerify $(FEDIR)/libpygio.so $(FEDIR)/gio.py 
    187194fe-progs: frontend-progs 
    188195 
Note: See TracChangeset for help on using the changeset viewer.