Explorar o código

changed makefile to include multiwindow

Simon Van Mierlo %!s(int64=6) %!d(string=hai) anos
pai
achega
50ee5e20bb
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      examples/bouncingballs/python/Makefile

+ 4 - 1
examples/bouncingballs/python/Makefile

@@ -5,7 +5,7 @@ FLAGS = -l python -p eventloop
 FLAGS_THREADS = -l python -p threads
 
 TARGET_DIR = target_py
-TARGETS = $(TARGET_DIR)/target.py $(TARGET_DIR)/target_performance.py $(TARGET_DIR)/target_performance_threads.py $(TARGET_DIR)/target_performance_cpu_time.py
+TARGETS = $(TARGET_DIR)/target.py $(TARGET_DIR)/multiwindow.py $(TARGET_DIR)/target_performance.py $(TARGET_DIR)/target_performance_threads.py $(TARGET_DIR)/target_performance_cpu_time.py
 
 
 all: $(TARGET_DIR) $(TARGETS)
@@ -17,6 +17,9 @@ clean:
 $(TARGET_DIR)/target.py: sccd.xml
 	$(SCCDC) $(FLAGS) -o $@ $<
 
+$(TARGET_DIR)/multiwindow.py: sccd_multiwindow.xml
+	$(SCCDC) $(FLAGS) -o $@ $<
+
 $(TARGET_DIR)/target_performance.py: sccd_performance.xml
 	$(SCCDC) $(FLAGS) -o $@ $<