# $Id: makefile,v 1.17 2000/08/21 00:15:54 ekohl Exp $ # # PATH_TO_TOP = ../../.. TARGET=ide OBJECTS = $(TARGET).o $(TARGET).coff ../../../ntoskrnl/ntoskrnl.a BASE_CFLAGS = -I. -I../../../include all: $(TARGET).sys.unstripped $(TARGET).sys .phony: all clean: - $(RM) $(TARGET).o - $(RM) $(TARGET).coff - $(RM) junk.tmp - $(RM) base.tmp - $(RM) temp.exp - $(RM) $(TARGET).sys - $(RM) $(TARGET).sys.unstripped .phony: clean install: $(FLOPPY_DIR)/drivers/$(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys: $(TARGET).sys ifeq ($(DOSCLI),yes) $(CP) $(TARGET).sys $(FLOPPY_DIR)\drivers\$(TARGET).sys else $(CP) $(TARGET).sys $(FLOPPY_DIR)/drivers/$(TARGET).sys endif dist: ../../../$(DIST_DIR)/drivers/$(TARGET).sys ../../../$(DIST_DIR)/drivers/$(TARGET).sys: $(TARGET).sys ifeq ($(DOSCLI),yes) $(CP) $(TARGET).sys ..\..\..\$(DIST_DIR)\drivers\$(TARGET).sys else $(CP) $(TARGET).sys ../../../$(DIST_DIR)/drivers/$(TARGET).sys endif $(TARGET).sys $(TARGET).sys.unstripped: $(OBJECTS) WITH_DEBUGGING=yes include ../../../rules.mak