diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index b004836..0000000 --- a/Makefile +++ /dev/null @@ -1,24 +0,0 @@ - -CFLAGS= -O2 -Wall -g -march=native -pthread - -PROG = minerd - -OBJS = cpu-miner.o - -LDFLAGS = $(CFLAGS) - -LIBS = -lcurl -ljansson -lcrypto - -all: $(PROG) - -.c.o: - gcc $(CFLAGS) -c $< -o $@ - -clean: - rm -f $(PROG) $(OBJS) - -$(PROG): $(OBJS) - gcc $(LDFLAGS) -o $(PROG) $(OBJS) $(LIBS) - -cpu-miner.o: cpu-miner.c sha256_generic.c - |