We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128e2ae commit bee8033Copy full SHA for bee8033
.gitignore
@@ -3,3 +3,6 @@
3
*.dylib
4
*.pcm
5
*.dat
6
+\#*
7
+.\#*
8
+*~
Makefile
@@ -0,0 +1,14 @@
1
+datfiles = $(filter-out line.dat,$(wildcard *.dat))
2
+
+all: make_2D.so
+make_2D.so:
+ root -l -b -e '.L ./make_2D.C+' -q
+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