Skip to content

Commit bee8033

Browse files
committed
For convenience, add a Makefile for precompiled scripts
1 parent 128e2ae commit bee8033

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33
*.dylib
44
*.pcm
55
*.dat
6+
\#*
7+
.\#*
8+
*~

Makefile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
datfiles = $(filter-out line.dat,$(wildcard *.dat))
2+
3+
all: make_2D.so
4+
5+
make_2D.so:
6+
root -l -b -e '.L ./make_2D.C+' -q
7+
8+
clean:
9+
rm -f *_C.{d,so,dylib} *_C_ACLiC*.pcm
10+
11+
distclean: clean
12+
ifneq ($(strip $(datfiles)),)
13+
rm -f $(datfiles)
14+
endif

0 commit comments

Comments
 (0)