view TaskManager/test/Makefile @ 1025:cb170249c752

minor fix
author yutaka@localhost.localdomain
date Mon, 08 Nov 2010 14:40:53 +0900
parents 55f898a58748
children
line wrap: on
line source

include ../Makefile.def

CPPFLAGS += -g -Wall -I../../include -m$(ABIBIT)

TARGET=MailManagerTest 

$(TARGET) :

LIBS += ../libFifoManager.a

MailManagerTest : MailManagerTest.o
	$(CC) $(CFLAGS) -o $@ $? $(LIBS)

clean:
	rm -rf *.o $(TARGET)