# This makefile is set up for Borland make 3.0/3.6
# Uncomment the following line for use with gnuish make 3.58 / ndmake 4.5
#.SUFFIXES: .chr .o

.chr.o:
	go32 bin2s $*.chr _$*_font $*.s
	gcc -c $*.s
	del $*.s

OBJS = bold.o euro.o goth.o lcom.o litt.o sans.o scri.o simp.o trip.o tscr.o

all: bin2s $(OBJS)

clean:
	-del bin2s
	-del *.s
	-del *.o

cleanall: clean

bin2s: bin2s.c
	gcc -o bin2s bin2s.c

