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 c81ab6d commit 2a61f97
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/makefile.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ OBJS= \
obj/scrypt.h \
obj/scrypt-x86_64.o

all: cleanwatercoind.exe
all: 2GiveCoind.exe

test check: test_cleanwatercoin.exe FORCE
test_cleanwatercoin.exe
test check: test_2GiveCoin.exe FORCE
test_2GiveCoind.exe

obj/%.o: %.cpp $(HEADERS)
g++ -c $(CFLAGS) -o $@ $<
Expand All @@ -99,19 +99,19 @@ obj/scrypt-x86.o: scrypt-x86.S
obj/scrypt-x86_64.o: scrypt-x86_64.S
$(CXX) -c $(xCXXFLAGS) -MMD -o $@ $<

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

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

obj-test/%.o: test/%.cpp $(HEADERS)
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/%))
g++ $(CFLAGS) $(LDFLAGS) -o $@ $(LIBPATHS) $^ -lboost_unit_test_framework $(LIBS)

clean:
-del /Q cleanwatercoin test_cleanwatercoin
-del /Q 2GiveCoin test_2GiveCoin
-del /Q obj\*
-del /Q obj-test\*

Expand Down

0 comments on commit 2a61f97

Please sign in to comment.