###############################################################################
# Makefile - makefile for os2ahci driver
#
# Copyright (c) 2010 Christian Mueller. Parts copied from/inspired by the
# Linux AHCI driver; those parts are (c) Linux AHCI/ATA maintainers
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA


###############################################################################
# Tool Chain

AS         = ml
CC         = cl
LD         = link

AFLAGS     = -c -nologo
CFLAGS     = -c -nologo -Asnw -W2 -G2ms -Zlpd -Fc -Zi
LFLAGS     = /noe /nod /packd /a:16 /batch /map /line 

###############################################################################
# Environment

# main path to OS/2 DDK; this needs to be set before this makefile will work
!ifndef DDK
DDK          = i:\ddk
!endif

# main path to 16 bit C compiler
!ifndef CC16
CC16         = i:\c600
!endif

CC_INCLUDE   = -I$(DDK)\base\h \
               -I$(DDK)\base\ibmh \
	       -I$(DDK)\base\src\dev\dasd\diskh \
               -I$(CC16)\include

AS_INCLUDE   = -I$(DDK)\base\inc \
               -I$(DDK)\base\src\dev\dasd\diskinc

LIB_DIRS     = $(DDK)\base\lib\ \
	       $(DDK)\base\src\dev\dasd\devhlp\ \
               $(CC16)\lib\ \


###############################################################################
# Main dependencies

TARGET   = os2ahci.add

LIBS     = addcalls dhcalls doscalls slibcep rmcalls

SRCS     = init.asm libc.c os2ahci.c pci.c ahci.c ata.c atapi.c ctxhook.c

OBJS     = init.obj libc.obj os2ahci.obj pci.obj ahci.obj ata.obj atapi.obj \
           ctxhook.obj

INCS     = os2ahci.h ahci.h


all: $(TARGET)

clean:
	rm -f $(OBJS) $(TARGET)

###############################################################################
# Object/source dependencies

init.obj:     init.asm   Makefile

libc.obj:     libc.c     Makefile $(INCS)

os2ahci.obj:  os2ahci.c  Makefile $(INCS)

pci.obj:      pci.c      Makefile $(INCS)

ahci.obj:     ahci.c     Makefile $(INCS) ata.h atapi.h

ata.obj:      ata.c      Makefile $(INCS) ata.h

atapi.obj:    atapi.c    Makefile $(INCS) ata.h atapi.h

ctxhook.obj:  ctxhook.c  Makefile $(INCS) ata.h atapi.h

###############################################################################
# Action definitions (compile/link commands)

.asm.obj:
	$(AS) $(AFLAGS) $(AS_INCLUDE) $*.asm

.c.obj:
	$(CC) $(CFLAGS) $(CC_INCLUDE) $*.c

$(TARGET): $(OBJS) os2ahci.def Makefile
	$(LD) $(LFLAGS) $(OBJS),$(TARGET),$*.map,$(LIB_DIRS) $(LIBS),$*.def
	mapsym os2ahci


