makefile error

Hello,

I have just downloaded a c++ package called TSNEAT, which is compiled with this makefile. However, when I run it using make in ubuntu, I simply get the message "make: Nothing to be done for `Makefile.common'."

Here is the makefile:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC = g++
BIN_DIR=./BIN
OBJ_DIR=./OBJ/


.DEFAULT_GOAL := $(BIN_DIR)/$(PROJECT)
ifeq ($(BUILD), DEBUG)
	CFLAGS = -g -W -Wall -Wunused -pedantic $(INCLUDES) $(CPPFLAGS)
else ifeq ($(BUILD), RELEASE)
	CFLAGS = -D NDEBUG -O3 -march=pentium4m -ffast-math  -funroll-loops $(INCLUDES) $(CPPFLAGS)
endif

COMPILE_OBJ = $(CC) $(CFLAGS) -c $< -o $@

clean:
	rm -f $(OBJ_DIR)*.o $(BIN_DIR)/$(PROJECT)
Topic archived. No new replies allowed.