kolibrios-gitea/programs/system/drivers/agp/makefile
Sergey Semyonov (Serge) e8b3efcc2d 1) common headers
2) usb code

git-svn-id: svn://kolibrios.org@954 a494cfbc-eb01-0410-851d-a64ba20cac60
2008-12-13 03:32:16 +00:00

34 lines
739 B
Makefile

CC = gcc
FASM = e:/fasm/fasm.exe
CFLAGS = -c -O2 -fomit-frame-pointer -fno-builtin-printf
LDRHD = -shared -T ld.x -s --file-alignment 32
INCLUDES = -I ../include
HFILES:= ../include/types.h \
../include/syscall.h \
agp.h \
pci.h \
SRC_DEP:= pci.inc \
detect.inc \
isoch.inc
AGP_SRC:= agp.c
AGP = agp.dll
all: $(AGP)
$(AGP): agp.obj $(SRC_DEP) $(HFILES) Makefile
wlink name agp.dll SYS nt_dll lib libdrv op offset=0 op nod op maxe=25 op el op STUB=stub.exe op START=_drvEntry @agp.lk
kpack.exe agp.dll agp.drv
agp.obj : agp.c $(SRC_DEP) $(HFILES) Makefile
$(CC) $(INCLUDES) $(CFLAGS) -o agp.obj agp.c