kolibrios/drivers/audio/a5536/makefile
Sergey Semyonov (Serge) 3f3d1c781a move AMD Geode AC97 driver
git-svn-id: svn://kolibrios.org@1028 a494cfbc-eb01-0410-851d-a64ba20cac60
2009-02-11 06:01:39 +00:00

31 lines
722 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 \
geode.h \
pci.h
SRC_DEP:=
GEODE_SRC:= amd_geode.h
NAME:= geode
GEODE:= geode.dll
all: $(GEODE)
$(GEODE): geode.obj $(SRC_DEP) $(HFILES) Makefile
wlink name $(GEODE) SYS nt_dll lib libdrv op offset=0 op nod op maxe=25 op el op STUB=stub.exe op START=_drvEntry @$(NAME).lk
kpack.exe geode.dll geode.drv
geode.obj : geode.c $(SRC_DEP) $(HFILES) Makefile
$(CC) $(INCLUDES) $(CFLAGS) -o geode.obj geode.c