diff options
| author | Antonio Radovcic <[email protected]> | 2019-07-27 11:45:49 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-07-27 11:45:49 +0200 |
| commit | 814952c01dcc1e14eb76e878c0cc3bdef6ee0fd2 (patch) | |
| tree | c575a09aee182bda4a949e23edffdd1b223a7b87 /templates | |
| parent | 6baf8bccb1047914fd53d753692a35906386f5dc (diff) | |
| download | raylib-814952c01dcc1e14eb76e878c0cc3bdef6ee0fd2.tar.gz raylib-814952c01dcc1e14eb76e878c0cc3bdef6ee0fd2.zip | |
#917 This commit changes the path to 'shell.html' in all Makefiles (#918)
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/advance_game/Makefile | 2 | ||||
| -rw-r--r-- | templates/simple_game/Makefile | 2 | ||||
| -rw-r--r-- | templates/standard_game/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/advance_game/Makefile b/templates/advance_game/Makefile index 95fb6f6f..6cd7d66a 100644 --- a/templates/advance_game/Makefile +++ b/templates/advance_game/Makefile @@ -236,7 +236,7 @@ ifeq ($(PLATFORM),PLATFORM_WEB) endif # Define a custom shell .html and output extension - CFLAGS += --shell-file $(RAYLIB_PATH)\src\shell.html + CFLAGS += --shell-file $(RAYLIB_PATH)/src/shell.html EXT = .html endif diff --git a/templates/simple_game/Makefile b/templates/simple_game/Makefile index ea732c92..326f4b7c 100644 --- a/templates/simple_game/Makefile +++ b/templates/simple_game/Makefile @@ -236,7 +236,7 @@ ifeq ($(PLATFORM),PLATFORM_WEB) endif # Define a custom shell .html and output extension - CFLAGS += --shell-file $(RAYLIB_PATH)\src\shell.html + CFLAGS += --shell-file $(RAYLIB_PATH)/src/shell.html EXT = .html endif diff --git a/templates/standard_game/Makefile b/templates/standard_game/Makefile index 56b76b42..b06bf320 100644 --- a/templates/standard_game/Makefile +++ b/templates/standard_game/Makefile @@ -230,7 +230,7 @@ ifeq ($(PLATFORM),PLATFORM_WEB) endif # Define a custom shell .html and output extension - CFLAGS += --shell-file $(RAYLIB_PATH)\src\shell.html + CFLAGS += --shell-file $(RAYLIB_PATH)/src/shell.html EXT = .html endif |
