1
0
mirror of https://github.com/GOSTSec/gostoclminer synced 2025-01-15 01:00:19 +00:00
gostoclminer/Makefile

22 lines
367 B
Makefile
Raw Normal View History

2011-02-05 00:44:17 +01:00
INCLUDEPATHS=-I${ATISTREAMSDKROOT}/include/ -L${ATISTREAMSDKROOT}/
LIBS=-lOpenCL -ljansson -lcurl
DEFS=
DEBUGFLAGS=-g
CFLAGS=-O3 -Wformat $(DEBUGFLAGS) $(DEFS) $(INCLUDEPATHS)
HEADERS=
OBJS=miner.o ocl.o findnonce.o util.o
all: oclminer
%.o: %.c $(HEADERS)
gcc -c $(CFLAGS) -o $@ $<
oclminer: $(OBJS)
gcc $(CFLAGS) -o $@ $^ $(LIBS)
clean:
-rm *.o oclminer