File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ FLAGS=-Wall -Wextra -std=c99
1111# \
1212!IFDEF MAKEDIR # \
1313# nmake: \
14- !CMDSWITCHES +s # \
1514CP=copy # \
1615MV=move # \
1716RM=del # \
@@ -104,12 +103,12 @@ clean:
104103 $(RM ) $(TITLE ) .exe
105104
106105force : source/*
107- @ $(RM ) $(TITLE )
108- @ $(RM ) $(TITLE ) .exe
109- @ $(MAKE ) $(TITLE )
106+ $(RM ) $(TITLE )
107+ $(RM ) $(TITLE ) .exe
108+ $(MAKE ) $(TITLE )
110109
111110debug : source/*
112- @ brew_inc=" " ; brew_lib=" " ; \
111+ brew_inc=" " ; brew_lib=" " ; \
113112 case " $$ (uname -s)" in \
114113 Darwin) \
115114 if command -v brew > /dev/null 2>&1 ; then \
@@ -126,7 +125,7 @@ debug: source/*
126125 $(TARGET )
127126
128127memdebug : source/*
129- @ brew_inc=" " ; brew_lib=" " ; \
128+ brew_inc=" " ; brew_lib=" " ; \
130129 case " $$ (uname -s)" in \
131130 Darwin) \
132131 if command -v brew > /dev/null 2>&1 ; then \
@@ -154,15 +153,15 @@ mac: source/*
154153 mkdir -p mac/$(TITLE ) .app/Contents/Resources/
155154 cp $(TITLE ) mac/$(TITLE ) .app/Contents/Resources/
156155 cp -r assets mac/$(TITLE ) .app/Contents/Resources/
157- @ dest=" mac/$( TITLE) .app/Contents/Resources" ; \
156+ dest=" mac/$( TITLE) .app/Contents/Resources" ; \
158157 for cellar in /opt/homebrew/Cellar /usr/local/Cellar; do \
159158 [ -d " $$ cellar" ] || continue ; \
160159 find " $$ cellar" -type f -iname ' *sdl2*.dylib' -exec cp -f {} " $$ dest/" + 2> /dev/null || true ; \
161160 done
162161 zip -r $(TITLE ) .mac.zip mac/$(TITLE ) .app
163162
164163windows : source/*
165- @ echo " Use nmake on Windows to build/package."
164+ echo " Use nmake on Windows to build/package."
166165
167166WASM_TOTAL_MEMORY =512MB
168167WASM_STACK_MEMORY =256MB
You can’t perform that action at this time.
0 commit comments