minix/drivers/memory/Makefile

59 lines
1.1 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 -L../libdriver
LIBS = -lsysutil -ldriver -lsys
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 allocmem.o $(IMGRD)
2005-04-21 16:53:53 +02:00
# build local binary
all build: $(DRIVER)
$(DRIVER): ramdisk_image $(OBJ)
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(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
TMPDIR=/usr/tmp $(CC) -T /usr/tmp -c imgrd_s.s
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