Skip to content

Commit

Permalink
Remove old CleanWaterCoin code
Browse files Browse the repository at this point in the history
 -remove old cleanwatercoin code
  • Loading branch information
TestingCrypto committed Jun 30, 2018
1 parent 2a61f97 commit 1091f84
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/makefile.linux-mingw
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ OBJS= \
obj/scrypt-x86.o \
obj/scrypt-x86_64.o

all: cleanwatercoind.exe
all: 2GiveCoind.exe

obj/build.h: FORCE
/bin/sh ../share/genbuild.sh obj/build.h
Expand All @@ -98,15 +98,15 @@ DEFS += -DHAVE_BUILD_INFO
obj/%.o: %.cpp $(HEADERS)
i586-mingw32msvc-g++ -c $(CFLAGS) -o $@ $<

cleanwatercoind.exe: $(OBJS:obj/%=obj/%)
2GiveCoind.exe: $(OBJS:obj/%=obj/%)
i586-mingw32msvc-g++ $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ $(LIBS)

TESTOBJS := $(patsubst test/%.cpp,obj-test/%.o,$(wildcard test/*.cpp))

obj-test/%.o: test/%.cpp $(HEADERS)
i586-mingw32msvc-g++ -c $(TESTDEFS) $(CFLAGS) -o $@ $<

test_cleanwatercoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
test_2GiveCoin.exe: $(TESTOBJS) $(filter-out obj/init.o,$(OBJS:obj/%=obj/%))
i586-mingw32msvc-g++ $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework-mt-s $(LIBS)

obj/scrypt-x86.o: scrypt-x86.S
Expand All @@ -117,9 +117,9 @@ obj/scrypt-x86_64.o: scrypt-x86_64.S

clean:
-rm -f obj/*.o
-rm -f cleanwatercoind.exe
-rm -f 2GiveCoind.exe
-rm -f obj-test/*.o
-rm -f test_cleanwatercoin.exe
-rm -f test_2GiveCoin.exe
-rm -f obj/build.h

FORCE:

0 comments on commit 1091f84

Please sign in to comment.