pool/blocknotify/Makefile
Tanguy Pruvot d8fe695a46 Some constants for the btc addr, email and site url..
+ missing .gitignore / folder git keepers
2015-07-02 21:17:04 +02:00

25 lines
336 B
Makefile

CC=gcc
CFLAGS=-c -g -I /usr/include/mysql -march=native
LDFLAGS=-g
#CFLAGS=-c -O2 -I /usr/include/mysql
#LDFLAGS=-O2
LDLIBS=-lstdc++
SOURCES=blocknotify.cpp
OBJECTS=$(SOURCES:.cpp=.o)
OUTPUT=blocknotify
all: $(SOURCES) $(OUTPUT)
install: all
strip -s $(OUTPUT)
cp $(OUTPUT) /usr/local/bin/
clean:
rm -f *.o
rm -f $(OUTPUT)