# This Makefile is intended for a UNIX system.
# Use "install.bcc" to build on a DOS system using Borland C/C++.


# files:

SOURCES=install.c  cindex.c dat.c diskname.c file_io.c getkey.c inst.c pause.c showdesc.c
OBJECTS=$(SOURCES:.c=.o)


# targets:

all: install.exe

lint:
	$(LINT) $(CFLAGS) $(SOURCES)

install.exe: $(OBJECTS)
	$(CC) $(CFLAGS) -o $@ $(OBJECTS)



# clean up:

clean:
	$(RM) *~ core

realclean: clean
	$(RM) $(OBJECTS)

distclean: realclean
	$(RM) *.exe
