#
# Make for DL.A and DL.LIB
#
#

CC = gcc
CFLAGS = -O2 

all : dl.a

dl.a : dlfcn.o
	ar r dl.a dlfcn.o
	emxomf -o dl.lib dl.a
