Skip to content

Commit

Permalink
Remove ui_res from makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinandresen committed Oct 7, 2011
1 parent 6853e62 commit c1131a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/makefile.linux-mingw
Expand Up @@ -79,7 +79,7 @@ all: bitcoind.exe
obj/nogui/%.o: %.cpp $(HEADERS)
i586-mingw32msvc-g++ -c $(CFLAGS) -o $@ $<

bitcoind.exe: $(OBJS:obj/%=obj/nogui/%) obj/ui_res.o
bitcoind.exe: $(OBJS:obj/%=obj/nogui/%)
i586-mingw32msvc-g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)


Expand Down
2 changes: 1 addition & 1 deletion src/makefile.mingw
Expand Up @@ -77,7 +77,7 @@ all: bitcoind.exe
obj/nogui/%.o: %.cpp $(HEADERS)
g++ -c $(CFLAGS) -o $@ $<

bitcoind.exe: $(OBJS:obj/%=obj/nogui/%) obj/ui_res.o
bitcoind.exe: $(OBJS:obj/%=obj/nogui/%)
g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)

obj/test/test_bitcoin.o: $(wildcard test/*.cpp) $(HEADERS)
Expand Down

0 comments on commit c1131a2

Please sign in to comment.