diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-19 15:13:45 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-03-19 15:57:52 +0100 |
commit | 930bfb287de0a38746493463016d0e4cea153ac0 (patch) | |
tree | 2424f961d525e6b33cf4dda7c42cc2301e740a5f /src/Makefile | |
parent | 37e9658f74f9421aaae5fe71f12eb2221f2d574a (diff) | |
download | lanes-930bfb287de0a38746493463016d0e4cea153ac0.tar.gz lanes-930bfb287de0a38746493463016d0e4cea153ac0.tar.bz2 lanes-930bfb287de0a38746493463016d0e4cea153ac0.zip |
C++ migration: changed file extensions from .c to .cpp
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index c4d4c30..cef4174 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -119,7 +119,7 @@ MODULE_DIR=$(MODULE) | |||
119 | #--- | 119 | #--- |
120 | all: $(MODULE)/core.$(_SO) | 120 | all: $(MODULE)/core.$(_SO) |
121 | 121 | ||
122 | %.o: %.c *.h Makefile | 122 | %.o: %.cpp *.h Makefile |
123 | 123 | ||
124 | # Note: Don't put $(LUA_LIBS) ahead of $^; MSYS will not like that (I think) | 124 | # Note: Don't put $(LUA_LIBS) ahead of $^; MSYS will not like that (I think) |
125 | # | 125 | # |