diff options
| author | Dave Chapman <dave@dchapman.com> | 2007-02-17 02:24:37 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2007-02-17 02:24:37 +0000 |
| commit | 92878d9ed464c21da8303d5b7434944332fcb79e (patch) | |
| tree | 94d750d004f65fd2a867d1def108d9d9570d5bd5 | |
| parent | 139fb1af20621e233f8f33cd1d984cb79231b7d4 (diff) | |
| download | rockbox-92878d9ed464c21da8303d5b7434944332fcb79e.zip rockbox-92878d9ed464c21da8303d5b7434944332fcb79e.tar.gz rockbox-92878d9ed464c21da8303d5b7434944332fcb79e.tar.bz2 rockbox-92878d9ed464c21da8303d5b7434944332fcb79e.tar.xz | |
FS #6443 from Jonas Häggqvist - add an "install" target.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12343 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/rbutil/Makefile b/rbutil/Makefile index 426f0ca..a7f9102 100644 --- a/rbutil/Makefile +++ b/rbutil/Makefile @@ -11,8 +11,13 @@ CXX=$(shell $(PREFIX)wx-config --cxx) -OBJS=rbutil.o rbutilApp.o rbutilFrm.o wizard_pages.o installlog.o +INC = +OBJS=rbutil.o rbutilApp.o rbutilFrm.o wizard_pages.o bootloaders.o installlog.o ipodpatcher/ipodpatcher.o ipodpatcher/ipodio-posix.o fwpatcher/md5.o fwpatcher/iriver.o +# Install into /usr/local by default +ifndef DESTDIR + DESTDIR=/usr/local +endif # type "make WIN=1" for a Windows build using the Debian mingw cross-compiler ifdef WIN @@ -27,7 +32,10 @@ endif all: rbutil$(EXT) .cpp.o : - $(CXX) -c `$(PREFIX)wx-config --cxxflags` -o $@ $< + $(CXX) $(INC) -c `$(PREFIX)wx-config --cxxflags` -o $@ $< + +.c.o : + $(CC) $(INC) -c `$(PREFIX)wx-config --cxxflags` -o $@ $< rbutil-rc.o: rbutil-rc.rc $(WINDRES) `$(PREFIX)wx-config --cxxflags` -O coff -F pe-i386 -o $@ $< @@ -38,3 +46,6 @@ rbutil$(EXT): $(OBJS) .PHONY: clean clean: rm -f rbutil rbutil.exe $(OBJS) *~ + +.PHONY: install + install -D rbutil$(EXT) $(DESTDIR)/bin/rbutil$(EXT) |