rockbox/rbutil/Makefile
Christi Scarborough 5003669541 Newer shinier install log file which is more intelligent and better able to cope with multiple packages being installed. This breaks compatibility with the old uninstall file format.
Various bug fixes and tidy ups.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11757 a1c6a512-1295-4272-9138-f99709370657
2006-12-14 03:55:15 +00:00

40 lines
1 KiB
Makefile

# __________ __ ___.
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
# \/ \/ \/ \/ \/
# $Id$
#
# Unix-style Makefile for rbutil
CXX=$(shell $(PREFIX)wx-config --cxx)
OBJS=rbutil.o rbutilApp.o rbutilFrm.o wizard_pages.o installog.o
# type "make WIN=1" for a Windows build using the Debian mingw cross-compiler
ifdef WIN
CROSS=i586-mingw32msvc-
WINDRES=i586-mingw32msvc-windres
EXT=.exe
PREFIX=/usr/i586-mingw32msvc/bin/
OBJS+=rbutil-rc.o
endif
.PHONY: all
all: rbutil$(EXT)
.cpp.o :
$(CXX) -c `$(PREFIX)wx-config --cxxflags` -o $@ $<
rbutil-rc.o: rbutil-rc.rc
$(WINDRES) `$(PREFIX)wx-config --cxxflags` -O coff -F pe-i386 -o $@ $<
rbutil$(EXT): $(OBJS)
$(CXX) -o $@ $(OBJS) `$(PREFIX)wx-config --libs`
.PHONY: clean
clean:
rm -f rbutil rbutil.exe $(OBJS) *~