testexecmgmt/ucc/Source/ThreadLibrary/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=../../BinInternal/libthread.a
INCLUDES=
OBJECTS=	CAThread.o
LIBS=

##########################################################################
#
# Rules
#
##########################################################################
$(TARGET):	$(OBJECTS) 
	ar -rcs $(TARGET) $(OBJECTS)

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

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

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

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