56 lines
1.1 KiB
Makefile
56 lines
1.1 KiB
Makefile
|
# Makefile for the AT disk driver (AT_WINI)
|
||
|
DRIVER = at_wini
|
||
|
|
||
|
# directories
|
||
|
u = /usr
|
||
|
i = $u/include
|
||
|
s = $i/sys
|
||
|
m = $i/minix
|
||
|
b = $i/ibm
|
||
|
d = $u/src/drivers
|
||
|
|
||
|
# programs, flags, etc.
|
||
|
MAKE = exec make
|
||
|
CC = exec cc
|
||
|
CFLAGS = -I$i
|
||
|
LDFLAGS = -i
|
||
|
LIBS = -lsys -lutils -ltimers
|
||
|
|
||
|
OBJ = at_wini.o
|
||
|
LIBDRIVER = $d/libdriver/driver.o $d/libdriver/drvlib.o
|
||
|
|
||
|
|
||
|
# build local binary
|
||
|
all build: $(DRIVER)
|
||
|
$(DRIVER): $(OBJ) $(LIBDRIVER)
|
||
|
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBDRIVER) $(LIBS)
|
||
|
install -S 256w $(DRIVER)
|
||
|
|
||
|
$(LIBDRIVER):
|
||
|
cd $d/libdriver && $(MAKE)
|
||
|
|
||
|
# install with other drivers
|
||
|
install: /usr/sbin/drivers/$(DRIVER)
|
||
|
/usr/sbin/drivers/$(DRIVER): $(DRIVER)
|
||
|
install -o root -cs $? $@
|
||
|
|
||
|
# clean up local files
|
||
|
clean:
|
||
|
rm -f $(DRIVER) *.o *.bak
|
||
|
|
||
|
|
||
|
# dependencies
|
||
|
a = $d/drivers.h $b/interrupt.h $b/bios.h \
|
||
|
$i/ansi.h $i/string.h $i/limits.h $i/stddef.h $i/errno.h \
|
||
|
$m/config.h $m/type.h $m/com.h $m/callnr.h $m/const.h $s/types.h \
|
||
|
$m/syslib.h $s/types.h \
|
||
|
$m/utils.h $m/serverassert.h $m/devio.h
|
||
|
l = $d/libdriver/driver.h $d/libdriver/driver.c $m/partition.h $m/u64.h
|
||
|
|
||
|
|
||
|
at_wini.o: $a $l
|
||
|
|
||
|
$(LIBDRIVER): $a $l
|
||
|
$(LIBDRIVER): $s/ioc_disk.h
|
||
|
|