minix/drivers/memory/Makefile

62 lines
1.2 KiB
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for memory driver (MEMORY)
DRIVER = memory
# directories
u = /usr
i = $u/include
s = $i/sys
m = $i/minix
b = $i/ibm
2005-06-06 18:18:05 +02:00
d = ..
2005-04-21 16:53:53 +02:00
# programs, flags, etc.
MAKE = exec make
CC = exec cc
CFLAGS = -I$i
LDFLAGS = -i
LIBS = -lsys -lsysutil
2005-04-21 16:53:53 +02:00
# imgrd_s.s is the ACK assembler version of the ramdisk. For more portability,
# use the C version imgrd.c. However, the C compiler takes too much memory
# compiling imgrd.c.
IMGRD=imgrd_s.o
#IMGRD=imgrd.c
OBJ = memory.o $(IMGRD)
2005-04-21 16:53:53 +02:00
LIBDRIVER = $d/libdriver/driver.o
# build local binary
all build: $(DRIVER)
$(DRIVER): ramdisk_image $(OBJ) $(LIBDRIVER)
2005-04-21 16:53:53 +02:00
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBDRIVER) $(LIBS)
2006-03-09 15:02:32 +01:00
install -S 8k $(DRIVER)
2005-04-21 16:53:53 +02:00
imgrd.o: ramdisk/image.c
imgrd_s.o: ramdisk/image.s
2005-04-21 16:53:53 +02:00
$(LIBDRIVER):
cd $d/libdriver && $(MAKE)
ramdisk_image:
cd ramdisk && make
2005-07-18 17:40:24 +02:00
2005-04-21 16:53:53 +02:00
# install with other drivers
2006-02-17 16:03:38 +01:00
install: /usr/sbin/$(DRIVER)
/usr/sbin/$(DRIVER): $(DRIVER)
2005-04-21 16:53:53 +02:00
install -o root -cs $? $@
# clean up local files
clean:
rm -f $(DRIVER) *.o *.bak
cd ramdisk && make clean
2005-04-21 16:53:53 +02:00
2005-06-24 18:21:54 +02:00
depend:
/usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" memory.c ../libdriver/*.c > .depend
2006-02-15 15:21:56 +01:00
cd ramdisk && make depend
2005-04-21 16:53:53 +02:00
2005-06-24 18:21:54 +02:00
# Include generated dependencies.
include .depend
2005-04-21 16:53:53 +02:00