diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,7 +7,7 @@ OBJECT_FILES := $(patsubst %,bin/%.o,$(MODULE_NAMES)) DEMO_NAMES := getting-started platformer shmup topdown audio sandbox spritefont menu tweens scaling animation DEMO_BINS := $(patsubst %,bin/demo-%,$(DEMO_NAMES)) -UNIT_NAMES := $(patsubst %,downstroke-%,$(MODULE_NAMES)) +UNIT_NAMES := $(patsubst %,downstroke.%,$(MODULE_NAMES)) USES_FLAGS := $(patsubst %,-uses %,$(UNIT_NAMES)) # Build all engine modules @@ -34,8 +34,8 @@ bin/scene-loader.o: bin/world.o bin/tilemap.o bin/assets.o bin/engine.o bin/pref # Pattern rule: compile each module as a library unit bin/%.o: %.scm | bin - csc -c -J -unit downstroke-$* $*.scm -o bin/$*.o -I bin - @if [ -f downstroke-$*.import.scm ]; then mv downstroke-$*.import.scm bin/; fi + csc -c -J -unit downstroke.$* $*.scm -o bin/$*.o -I bin + @if [ -f downstroke.$*.import.scm ]; then mv downstroke.$*.import.scm bin/; fi .PHONY: clean test engine demos filter |
