summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/dumb/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/apps/codecs/dumb/Makefile b/apps/codecs/dumb/Makefile
index efe715f63e..823c1628c3 100644
--- a/apps/codecs/dumb/Makefile
+++ b/apps/codecs/dumb/Makefile
@@ -277,17 +277,20 @@ include make/Makefile.inc
277 277
278 278
279$(CORE_EXAMPLES_EXE): examples/%$(EXE_SUFFIX): examples/%.o $(CORE_LIB_FILE_RELEASE) 279$(CORE_EXAMPLES_EXE): examples/%$(EXE_SUFFIX): examples/%.o $(CORE_LIB_FILE_RELEASE)
280 $(CC) $^ -o $@ $(LDFLAGS) $(LINK_MATH) 280 @echo "(dumb) compiling $^"
281 @$(CC) $^ -o $@ $(LDFLAGS) $(LINK_MATH)
281 282
282$(ALLEGRO_EXAMPLES_EXE): examples/%$(EXE_SUFFIX): examples/%.o $(ALLEGRO_LIB_FILE_RELEASE) $(CORE_LIB_FILE_RELEASE) 283$(ALLEGRO_EXAMPLES_EXE): examples/%$(EXE_SUFFIX): examples/%.o $(ALLEGRO_LIB_FILE_RELEASE) $(CORE_LIB_FILE_RELEASE)
283 $(CC) $^ -o $@ $(LDFLAGS) $(LINK_ALLEGRO) 284 @echo "(dumb) compiling $^"
285 @$(CC) $^ -o $@ $(LDFLAGS) $(LINK_ALLEGRO)
284 286
285$(CORE_EXAMPLES_OBJ): examples/%.o: examples/%.c include/dumb.h 287$(CORE_EXAMPLES_OBJ): examples/%.o: examples/%.c include/dumb.h
286 $(CC) -c $< -o $@ $(CFLAGS_RELEASE) 288 @echo "(dumb) compiling $^"
289 @$(CC) -c $< -o $@ $(CFLAGS_RELEASE)
287 290
288$(ALLEGRO_EXAMPLES_OBJ): examples/%.o: examples/%.c include/dumb.h include/aldumb.h 291$(ALLEGRO_EXAMPLES_OBJ): examples/%.o: examples/%.c include/dumb.h include/aldumb.h
289 $(CC) -c $< -o $@ $(CFLAGS_RELEASE) -Wno-missing-declarations 292 @echo "(dumb) compiling $^"
290 293 @$(CC) -c $< -o $@ $(CFLAGS_RELEASE) -Wno-missing-declarations
291 294
292clean: 295clean:
293 $(call DELETE,$(call FIX,$(OBJDIR_BASE)/release/*.o)) 296 $(call DELETE,$(call FIX,$(OBJDIR_BASE)/release/*.o))