]> AND Private Git Repository - loba.git/blobdiff - Makefile
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Cleanup: remove simple_async.
[loba.git] / Makefile
index 9de6a1912cbdf1c169387dfb7d42d68f0f85df18..2af8ebaafadb70507251b284ffac75470ddf5701 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-SIMGRID_INSTALL_DIR ?= ./simgrid-stable
-#SIMGRID_INSTALL_DIR ?= ./simgrid-dev
+SIMGRID_INSTALL_DIR ?= $(PWD)/simgrid-stable
+#SIMGRID_INSTALL_DIR ?= $(PWD)/simgrid-dev
 
 OPTIM_FLAGS += -O3
 DEBUG_FLAGS += -g
@@ -42,20 +42,17 @@ SRC.loba := main.cpp                \
        process.cpp             \
        version.cpp
 
-SRC.simple_async := simple_async.cpp
-
-SRC := $(SRC.loba) $(SRC.simple_async)
+SRC := $(SRC.loba)
 OBJ := $(SRC:%.cpp=%.o)
 DEP := $(SRC:%.cpp=.%.d)
 
 DEFAULT_TARGETS := loba
 FLAVOURED_LOBA := loba-dev loba-stable
-TARGETS := $(DEFAULT_TARGETS)  \
-          simple_async
+TARGETS := $(DEFAULT_TARGETS)
 
 XML_FILES =                                            \
        Dep.xml  Plat.xml                               \
-       platform.xml deployment.xml simple_async.xml    \
+       platform.xml deployment.xml                     \
        cluster1000.xml machines1000.xml
 
 XML_DEV_FILES = $(XML_FILES:%.xml=%_dev.xml)
@@ -92,7 +89,7 @@ realclean: clean
 
 $(FLAVOURED_LOBA):
        $(MAKE) clean
-       $(MAKE) SIMGRID_INSTALL_DIR=./simgrid-$(patsubst loba-%,%,$@) loba
+       $(MAKE) SIMGRID_INSTALL_DIR=$(PWD)/simgrid-$(patsubst loba-%,%,$@) loba
        mv -f -- loba $@
        $(MAKE) clean