You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
347 B
20 lines
347 B
LIBS=-ljansson -lcurl |
|
|
|
DEFS= |
|
DEBUGFLAGS= |
|
CFLAGS=-I/usr/local/include -O3 -Wformat $(DEBUGFLAGS) $(DEFS) |
|
LDFLAGS=-framework OpenCL -L/usr/local/lib |
|
HEADERS= |
|
|
|
OBJS=miner.o ocl.o findnonce.o util.o |
|
|
|
all: oclminer |
|
|
|
%.o: %.c $(HEADERS) |
|
gcc -c $(CFLAGS) -o $@ $< |
|
|
|
oclminer: $(OBJS) |
|
gcc $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) |
|
|
|
clean: |
|
-rm *.o oclminer
|
|
|