Skip to content
Snippets Groups Projects
Commit 0dc64964 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Add missing Makefile

parent 35593873
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,9 @@ then
source ~/.bashrc
sh ./autogen.sh
module load gcc/4.9.2
./install -s
./install -s -c "--prefix=/home/jenkins/openfpm_install"
make
make install
if [ $? -ne 0 ]; then exit 1 ; fi
mpirun -np 2 ./src/pdata
......
SUBDIRS := $(wildcard */.)
all clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@; \
done
clean: $(SUBDIRS)
.PHONY: all clean $(SUBDIRS)
SUBDIRS := $(wildcard */.)
all clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir $@; \
done
clean: $(SUBDIRS)
.PHONY: all clean $(SUBDIRS)
......@@ -90,4 +90,4 @@ class pack_example:
self.add_r(dir+os.sep+example_dir)
# make an archive
shutil.make_archive(file,"bztar",self.base_dir)
shutil.make_archive(file,"bztar",self.temporary)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment