diff options
Diffstat (limited to 'win32/x86/Makefile')
-rw-r--r-- | win32/x86/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/win32/x86/Makefile b/win32/x86/Makefile index e5aad93..8e16579 100644 --- a/win32/x86/Makefile +++ b/win32/x86/Makefile @@ -35,11 +35,17 @@ LIBS=-nostdlib -s -Wl,-e_entry@4 \ -lgdi32 -lshlwapi -lwinmm -lshell32 $(TARGET): $(OBJS) - $(CC) -o $@ $(OBJS) $(LIBS) - $(STRIP) $@ + @echo " CCLD $@" + @$(CC) -o $@ $(OBJS) $(LIBS) + @$(STRIP) $@ + +%.o: %.c + @echo " CC $@" + @$(CC) $(CFLAGS) -c $< -o $@ %.o: %.rc $(ICON) - $(WINDRES) -o $@ -i $< + @echo " WINDRES $@" + @$(WINDRES) -o $@ -i $< $(ICON): $(ICONFILES) convert $(ICONFILES) -colors 256 $@ |