18 lines
277 B
Makefile
18 lines
277 B
Makefile
#
|
|
# Makefile for hexameter
|
|
# @author Takahide Matsutsuka <markn@markn.org>
|
|
#
|
|
# $Id: Makefile,v 1.1 2008/07/02 07:17:14 matsutsuka Exp $
|
|
#
|
|
|
|
CFLAGS =
|
|
SOURCEDIR = src
|
|
TARGET = hexameter.o ihx2bin.o
|
|
|
|
vpath %.c $(SOURCEDIR)
|
|
|
|
hexameter: $(TARGET)
|
|
|
|
clean:
|
|
rm -f *.o *~ hexameter.exe
|