New make target of "make depend" Addition of doxygen building ability Cleanup of docygen comment blocks Initial telnetd protocol module structure
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
# This file is distributed as part of the SkySQL Gateway. It is free
|
|
# software: you can redistribute it and/or modify it under the terms of the
|
|
# GNU General Public License as published by the Free Software Foundation,
|
|
# version 2.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
# details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# this program; if not, write to the Free Software Foundation, Inc., 51
|
|
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
#
|
|
# Copyright SkySQL Ab 2013
|
|
#
|
|
# Revision History
|
|
# Date Who Description
|
|
# 13/06/13 Mark Riddoch Addition of -rdynamic to allow libraries
|
|
# to resolve symbols in the main executable
|
|
# 17/06/13 Mark Riddoch Addition of dependency generation
|
|
|
|
CC=cc
|
|
CFLAGS=-c -I/usr/include -I../include
|
|
LDFLAGS=-rdynamic
|
|
SRCS= atomic.c buffer.c spinlock.c gateway.c gateway_mysql_protocol.c gw_utils.c \
|
|
utils.c dcb.c load_utils.c
|
|
HDRS= ../include/atomic.h ../include/buffer.h ../include/dcb.h \
|
|
../include/gateway_mysql.h ../include/gw.h ../include/mysql_protocol.h \
|
|
../include/session.h ../include/spinlock.h ../include/thread.h \
|
|
../include/modules.h
|
|
OBJ=$(SRCS:.c=.o)
|
|
LIBS=-lssl
|
|
|
|
gateway: $(OBJ)
|
|
$(CC) $(LDFLAGS) $(OBJ) $(LIBS) -o $@
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) $< -o $@
|
|
|
|
clean:
|
|
rm -f $(OBJ) gateway
|
|
|
|
tags:
|
|
ctags $(SRCS) $(HDRS)
|
|
|
|
depend: depend.mk
|
|
|
|
depend.mk: $(SRCS)
|
|
@rm -f depend.mk
|
|
cc -M $(CFLAGS) $(SRCS) > depend.mk
|
|
|
|
include depend.mk
|