diff --git a/.gitignore b/.gitignore index e5094ca..62aaa6a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,5 @@ *.o tbb - +gmon.out dummy-file diff --git a/Makefile b/Makefile index 552818f..85362c2 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,11 @@ ############################################# # making the bubulles library -# maybe must be run with gmake +# maybe must be run with gmake on FreeBSD ############################################# +CC = gcc + OPT = -Wall -g -DDEBUG_LEVEL=1 -DMUST_ABORT CC = gcc diff --git a/README.txt b/README.txt index 773aa1f..ff21e31 100644 --- a/README.txt +++ b/README.txt @@ -7,6 +7,8 @@ * This kludge was mainly build on FreeBSD, so ymmv. * But you have to use GNU make, iirc... + * Looking at the Makefile is a good idea. +