mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
rbutil can now install the Freedoom wads. Thanks to M.Arnold for the pic on the doom install button
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13397 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8c2bcf1bff
commit
4544c43794
11 changed files with 1489 additions and 28 deletions
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
# Unix-style Makefile for rbutil
|
||||
|
||||
CXX=$(shell $(PREFIX)wx-config --cxx)
|
||||
CXX=$(shell $(PREFIX)wx-config --version=2.8 --cxx)
|
||||
INC =
|
||||
CFLAGS = -Wall -Wundef -DRBUTIL
|
||||
OBJS=rbutil.o rbutilApp.o rbutilFrm.o rbutilCtrls.o install_dialogs.o bootloaders.o installlog.o ipodpatcher/ipodpatcher.o ipodpatcher/ipodio-posix.o sansapatcher/sansapatcher.o sansapatcher/sansaio-posix.o irivertools.o md5sum.o
|
||||
|
|
@ -32,16 +32,16 @@ endif
|
|||
all: rbutil$(EXT)
|
||||
|
||||
.cpp.o :
|
||||
$(CXX) $(CFLAGS) $(INC) -c `$(PREFIX)wx-config --cxxflags` -o $@ $<
|
||||
$(CXX) $(CFLAGS) $(INC) -c `$(PREFIX)wx-config --version=2.8 --cxxflags` -o $@ $<
|
||||
|
||||
.c.o :
|
||||
$(CC) $(CFLAGS) $(INC) -c `$(PREFIX)wx-config --cxxflags` -o $@ $<
|
||||
$(CC) $(CFLAGS) $(INC) -c `$(PREFIX)wx-config --version=2.8 --cxxflags` -o $@ $<
|
||||
|
||||
rbutil-rc.o: rbutil-rc.rc
|
||||
$(WINDRES) `$(PREFIX)wx-config --cxxflags` -O coff -F pe-i386 -o $@ $<
|
||||
$(WINDRES) `$(PREFIX)wx-config --version=2.8 --cxxflags` -O coff -F pe-i386 -o $@ $<
|
||||
|
||||
rbutil$(EXT): $(OBJS)
|
||||
$(CXX) -o $@ $(OBJS) `$(PREFIX)wx-config --libs`
|
||||
$(CXX) -o $@ $(OBJS) `$(PREFIX)wx-config --version=2.8 --libs`
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue