testexecmgmt/ucc/Source/PppdGateway/Makefile
author Johnson Ma <johnson.ma@nokia.com>
Mon, 08 Mar 2010 15:04:18 +0800
changeset 0 3da2a79470a7
permissions -rw-r--r--
Initial EPL Contribution

##########################################################################
#
# Makefile for ...
#
##########################################################################

##########################################################################
#
# Definitions
#
##########################################################################
TARGET=		../../bin/pppdgateway
INCLUDES=
OBJECTS=	pppdgateway.o socket_helper.o
LIBS= 		-lpthread

##########################################################################
#
# Rules
#
##########################################################################
$(TARGET):	$(OBJECTS)
	gcc -gstabs -Wall -o $(TARGET) $(OBJECTS) $(LIBS)

%.o:	%.c
	gcc -gstabs -Wall $(INCLUDES) -c $< -o $@

%.o:	%.cpp
	g++ -gstabs -Wall $(INCLUDES) -c $< -o $@

clean:
	rm -r -f $(TARGET) *.o *~