view packages/services/gfx/mw/current/src/contrib/GPL/tpcal/Makefile @ 208:e0c0827131d1 ecos

Merge from eCos master repository on 2002-05-20-20:11:54-BST
author jlarmour
date Mon, 20 May 2002 22:19:26 +0000
parents
children
line wrap: on
line source

#CC = mipsel-linux-gcc -msoft-float -s
CC = gcc
CFLAGS = -Wall -I../../../include -I../../../drivers -L../../../lib
LIBS = -lmwin -lmwinlib -lmwengine -lmwdrivers -lmwfonts
OBJECTS = tpcal.o transform.o

all: tpcal

tpcal: $(OBJECTS)
	$(CC) $(CFLAGS) $(OBJECTS) $(LIBS) -o tpcal

clean:
	rm -f *.o tpcal