mirror of https://github.com/BOINC/boinc.git
30 lines
388 B
Makefile
30 lines
388 B
Makefile
|
VERSION = 1
|
||
|
|
||
|
MYSQL_DIR = /usr/local/mysql/include
|
||
|
|
||
|
CFLAGS = -g -Wall @DEFS@ \
|
||
|
-DHOSTTYPE=\"@host@\" \
|
||
|
-DVERSION=$(VERSION) \
|
||
|
-I $(MYSQL_DIR) \
|
||
|
-pedantic
|
||
|
|
||
|
CC = @CC@ $(CFLAGS)
|
||
|
|
||
|
LIBS = ../api/api.o
|
||
|
|
||
|
CLIBS = @LIBS@
|
||
|
|
||
|
.C.o:
|
||
|
$(CC) -c -o $*.o $<
|
||
|
|
||
|
all: db_mysql.o mysql_util.o
|
||
|
|
||
|
clean:
|
||
|
rm -f dependencies *.o
|
||
|
|
||
|
dependencies: *.C
|
||
|
$(CC) -M *.C > dependencies
|
||
|
|
||
|
include dependencies
|
||
|
|