freemyipod r798 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r797‎ | r798 | r799 >
Date:14:55, 19 November 2011
Author:user890104
Status:new
Tags:
Comment:
emCOREFS: fix Makefile fail
Modified paths:
  • /emcore/trunk/tools/emcorefs/Makefile (modified) (history)

Diff [purge]

Index: emcore/trunk/tools/emcorefs/Makefile
@@ -2,18 +2,15 @@
33 SOURCES = util.c usb.c emcore.c cache.c fuse.c emcorefs.c
44 TARGET = build/emcorefs
55
6 -all: build emcorefs
 6+all: $(TARGET)
77
8 -emcorefs:
9 - gcc $(CFLAGS) -o $(TARGET) $(SOURCES)
10 -
118 build:
129 @mkdir $@
1310
14 -testonly:
15 - gcc $(CFLAGS) -DTEST_ONLY -DDEBUG -g -o $(TARGET) $(SOURCES)
 11+$(TARGET): build
 12+ gcc $(CFLAGS) -o $(TARGET) $(SOURCES)
1613
17 -debug:
 14+debug: build
1815 gcc $(CFLAGS) -DDEBUG -g -o $(TARGET) $(SOURCES)
1916
2017 test:
@@ -24,5 +21,8 @@
2522 @mkdir -p mountpoint
2623 $(TARGET) -d -s mountpoint/
2724
 25+testonly:
 26+ gcc $(CFLAGS) -DTEST_ONLY -DDEBUG -g -o $(TARGET) $(SOURCES)
 27+
2828 clean:
2929 @rm -rf build