diff options
| author | Benoit Germain <benoit.germain@ubisoft.com> | 2025-03-12 14:13:25 +0100 |
|---|---|---|
| committer | Benoit Germain <benoit.germain@ubisoft.com> | 2025-03-12 14:13:25 +0100 |
| commit | 79c7eb627052183c142cd782e743b79869993d82 (patch) | |
| tree | cbe1eb0be1f976520cc4637ad742c27e3f94beac | |
| parent | 8f3ebb14841e28f8142b81fb646810fff5052ed6 (diff) | |
| download | lanes-79c7eb627052183c142cd782e743b79869993d82.tar.gz lanes-79c7eb627052183c142cd782e743b79869993d82.tar.bz2 lanes-79c7eb627052183c142cd782e743b79869993d82.zip | |
Makefile tweaks
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | lanes-4.0.0-0.rockspec | 2 | ||||
| -rw-r--r-- | src/Makefile | 2 | ||||
| -rw-r--r-- | unit_tests/Makefile | 2 |
4 files changed, 4 insertions, 3 deletions
| @@ -52,6 +52,7 @@ $(_UNITTEST_TARGET): $(_TARGET_SO) | |||
| 52 | 52 | ||
| 53 | clean: | 53 | clean: |
| 54 | cd src && $(MAKE) clean | 54 | cd src && $(MAKE) clean |
| 55 | cd unit_tests && $(MAKE) clean | ||
| 55 | 56 | ||
| 56 | debug: | 57 | debug: |
| 57 | $(MAKE) clean | 58 | $(MAKE) clean |
diff --git a/lanes-4.0.0-0.rockspec b/lanes-4.0.0-0.rockspec index dbe398a..5d85fdd 100644 --- a/lanes-4.0.0-0.rockspec +++ b/lanes-4.0.0-0.rockspec | |||
| @@ -72,9 +72,9 @@ build = { | |||
| 72 | "src/linda.cpp", | 72 | "src/linda.cpp", |
| 73 | "src/lindafactory.cpp", | 73 | "src/lindafactory.cpp", |
| 74 | "src/nameof.cpp", | 74 | "src/nameof.cpp", |
| 75 | "src/tools.cpp", | ||
| 76 | "src/state.cpp", | 75 | "src/state.cpp", |
| 77 | "src/threading.cpp", | 76 | "src/threading.cpp", |
| 77 | "src/tools.cpp", | ||
| 78 | "src/tracker.cpp", | 78 | "src/tracker.cpp", |
| 79 | "src/universe.cpp" | 79 | "src/universe.cpp" |
| 80 | }, | 80 | }, |
diff --git a/src/Makefile b/src/Makefile index 262f970..028ef3a 100644 --- a/src/Makefile +++ b/src/Makefile | |||
| @@ -34,7 +34,7 @@ $(MODULE_DIR)/core.$(_SO): $(OBJ) | |||
| 34 | $(CC) $(LIBFLAG) $^ $(LIBS) $(LUA_LIBS) -o $@ | 34 | $(CC) $(LIBFLAG) $^ $(LIBS) $(LUA_LIBS) -o $@ |
| 35 | 35 | ||
| 36 | clean: | 36 | clean: |
| 37 | -rm -rf $(MODULE)/core.$(_SO) *.o *.map | 37 | -rm -rf $(MODULE)/core.$(_SO) *.o *.map *.gch |
| 38 | 38 | ||
| 39 | #--- | 39 | #--- |
| 40 | # NSLU2 "slug" Linux ARM | 40 | # NSLU2 "slug" Linux ARM |
diff --git a/unit_tests/Makefile b/unit_tests/Makefile index 67333f6..89106b9 100644 --- a/unit_tests/Makefile +++ b/unit_tests/Makefile | |||
| @@ -26,6 +26,6 @@ $(_UNITTEST_TARGET): $(OBJ) | |||
| 26 | $(CC) $^ $(LIBS) $(LUA_LIBS) -o $@ | 26 | $(CC) $^ $(LIBS) $(LUA_LIBS) -o $@ |
| 27 | 27 | ||
| 28 | clean: | 28 | clean: |
| 29 | -rm -rf $(_UNITTEST_TARGET) *.o *.map | 29 | -rm -rf $(_UNITTEST_TARGET) *.o *.map *.gch |
| 30 | 30 | ||
| 31 | .PROXY: all clean | 31 | .PROXY: all clean |
