view test/list/Makefile @ 2:803d6bf22e6d default tip

second commit. it's far to complete..
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Dec 2009 16:19:56 +0900
parents 5b089096921f
children
line wrap: on
line source

CC = gcc

INCLUDE = -I../../
CFLAGS = -g -O0 $(INCLUDE)

all: testlist testiter

.c.o:
	$(CC) -c $(CFLAGS) -o $@ $<

testlist: testlist.o ../../List.o
	$(CC) -o $@ $^
testiter: testiter.o ../../List.o
	$(CC) -o $@ $^