# makefile for shar
#
# I use this with Greg Yachuk's make16, but it is pretty straightforward
# and should work with any non-brain-damaged make (which excludes
# Microsoft make!).


MODEL = S

#OBJS = shar.obj reargv.obj
OBJS = shar.obj 

shar.exe:	$(OBJS)
	$(CC) $(CFLAGS) -F 1000 -Feshar.exe $(OBJS)
