# Makefile for embedded_utils/samples
# Satofumi KAMIMURA
# $Id: Makefile 1745 2010-03-13 07:41:13Z satofumi $

# Compile options
CFLAGS = -g -O0 -Wall -Werror -W $(INCLUDES)
INCLUDES = -I..
LDFLAGS =
LDLIBS =


# Target
TARGET = mot_handler_output

all : $(TARGET)

clean :
	$(RM) *.o $(TARGET)

.PHONY : all clean
######################################################################
mot_handler_output : mot_handler.o

mot_handler.o : ../mot_handler.c
	$(CC) $(CFLAGS) -c $<
