freemyipod r263 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r262‎ | r263 | r264 >
Date:15:45, 17 November 2010
Author:theseven
Status:new
Tags:
Comment:
tools/ucl: Fix make clean on linux, still broken on windows (because of the .exe suffix)
Modified paths:
  • /tools/ucl/Makefile (modified) (history)

Diff [purge]

Index: tools/ucl/Makefile
@@ -11,8 +11,9 @@
1212 TARGET = ../uclpack
1313 TARGET2 = ../ucl2e10singleblk
1414 TARGET3 = ../ucl2e10singleblkunpack
 15+TARGETS = $(TARGET) $(TARGET2) $(TARGET3)
1516
16 -ALL: $(TARGET) $(TARGET2) $(TARGET3)
 17+ALL: $(TARGETS)
1718
1819 $(TARGET): uclpack.o src/libucl.a
1920 $(CC) uclpack.o src/libucl.a -o $(TARGET)
@@ -33,5 +34,5 @@
3435 $(MAKE) -C src
3536
3637 clean:
37 - rm -f $(ALL) uclpack.o ucl2e10singleblk.o ucl2e10singleblkunpack.o
 38+ rm -f $(ALL) uclpack.o ucl2e10singleblk.o ucl2e10singleblkunpack.o $(TARGETS)
3839 $(MAKE) -C src clean
\ No newline at end of file