# Makefile for TCCONIO library for MinGW32.
# Jason Hood, 7 June, 2005.

OBJS = _setcursortype.o clreol.o clrscr.o delline.o getpassA.o getpassW.o \
       gettextA.o gettextinfo.o gettextW.o gotoxy.o highvideo.o insline.o \
       Line.o lowvideo.o movetext.o normvideo.o puttextA.o puttextW.o \
       tcconio.o textattr.o textbackground.o textcolor.o textmode.o wherex.o \
       wherey.o window.o

CFLAGS = -O2 -Wall
CC = colgcc gcc

libtcconio.a: $(OBJS)
	ar ruc $@ $(OBJS)
