1
0
mirror of https://github.com/GOSTSec/vanitygen synced 2025-02-07 12:24:20 +00:00
vanitygen/Makefile
samr7 b887a2fd9d Update the Mac OS X Makefile.
Remove some items from the Linux Makefile that should not be there.
2011-08-07 17:03:29 -07:00

16 lines
344 B
Makefile

LIBS=-lpcre -lcrypto -lm -lpthread
CFLAGS=-ggdb -O3 -Wall
OBJS=vanitygen.o oclvanitygen.o pattern.o util.o
PROGS=vanitygen
all: $(PROGS)
vanitygen: vanitygen.o pattern.o util.o
$(CC) $^ -o $@ $(CFLAGS) $(LIBS)
oclvanitygen: oclvanitygen.o pattern.o util.o
$(CC) $^ -o $@ $(CFLAGS) $(LIBS) -lOpenCL
clean:
rm -f $(OBJS) $(PROGS) $(TESTS)