#
# makefile for NT1.A
#
# This library pathes the EMX C-library
#
.s.o:
as -o $*.o $*.s
.c.o:
gcc -O2 -ZC++-comments -c $<
OBJ = dllinit.o \
main.o \
dos.o
..\nt1.a: $(OBJ)
del ..\nt1.a
ar -r ..\nt1.a $(OBJ) IMPORT#1