diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-05-07 22:09:19 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-05-07 22:09:19 +0000 |
| commit | 2505e7bf047b65d5c8b714eb3528dc1c1e178dfd (patch) | |
| tree | f943678ea795494f136f4f582b1f4eddcd55dec5 | |
| parent | 287c742cffadbb72f1e8cb9771539fb1602bd44a (diff) | |
| download | rockbox-2505e7bf047b65d5c8b714eb3528dc1c1e178dfd.zip rockbox-2505e7bf047b65d5c8b714eb3528dc1c1e178dfd.tar.gz rockbox-2505e7bf047b65d5c8b714eb3528dc1c1e178dfd.tar.bz2 rockbox-2505e7bf047b65d5c8b714eb3528dc1c1e178dfd.tar.xz | |
nicer look
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6416 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/codecs/dumb/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/apps/codecs/dumb/Makefile b/apps/codecs/dumb/Makefile index efe715f..823c162 100644 --- a/apps/codecs/dumb/Makefile +++ b/apps/codecs/dumb/Makefile @@ -277,17 +277,20 @@ include make/Makefile.inc $(CORE_EXAMPLES_EXE): examples/%$(EXE_SUFFIX): examples/%.o $(CORE_LIB_FILE_RELEASE) - $(CC) $^ -o $@ $(LDFLAGS) $(LINK_MATH) + @echo "(dumb) compiling $^" + @$(CC) $^ -o $@ $(LDFLAGS) $(LINK_MATH) $(ALLEGRO_EXAMPLES_EXE): examples/%$(EXE_SUFFIX): examples/%.o $(ALLEGRO_LIB_FILE_RELEASE) $(CORE_LIB_FILE_RELEASE) - $(CC) $^ -o $@ $(LDFLAGS) $(LINK_ALLEGRO) + @echo "(dumb) compiling $^" + @$(CC) $^ -o $@ $(LDFLAGS) $(LINK_ALLEGRO) $(CORE_EXAMPLES_OBJ): examples/%.o: examples/%.c include/dumb.h - $(CC) -c $< -o $@ $(CFLAGS_RELEASE) + @echo "(dumb) compiling $^" + @$(CC) -c $< -o $@ $(CFLAGS_RELEASE) $(ALLEGRO_EXAMPLES_OBJ): examples/%.o: examples/%.c include/dumb.h include/aldumb.h - $(CC) -c $< -o $@ $(CFLAGS_RELEASE) -Wno-missing-declarations - + @echo "(dumb) compiling $^" + @$(CC) -c $< -o $@ $(CFLAGS_RELEASE) -Wno-missing-declarations clean: $(call DELETE,$(call FIX,$(OBJDIR_BASE)/release/*.o)) |