e9aabcf2f8
library to the memory driver. Always put output from within TTY directly on the console. Removed second include of driver.h from tty.c. Made tty_inrepcode bigger. First step to move PM and FS calls that are not regular (API) system calls out of callnr.h (renumbered them, and removed them from the table.c files). Imported the Minix-vmd uname implementation. This provides a more stable ABI than the current implementation. Added a bit of security checking. Unfortunately not nearly enough to get a secure system. Fixed a bug related to the sizes of the programs in the image (in PM patch_mem_chunks).
61 lines
1.2 KiB
Makefile
61 lines
1.2 KiB
Makefile
# Makefile for memory driver (MEMORY)
|
|
DRIVER = memory
|
|
|
|
# directories
|
|
u = /usr
|
|
i = $u/include
|
|
s = $i/sys
|
|
m = $i/minix
|
|
b = $i/ibm
|
|
d = ..
|
|
|
|
# programs, flags, etc.
|
|
MAKE = exec make
|
|
CC = exec cc
|
|
CFLAGS = -I$i
|
|
LDFLAGS = -i
|
|
LIBS = -lsys -lsysutil
|
|
|
|
# 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)
|
|
LIBDRIVER = $d/libdriver/driver.o
|
|
|
|
|
|
# build local binary
|
|
all build: $(DRIVER)
|
|
|
|
$(DRIVER): ramdisk_image $(OBJ) $(LIBDRIVER)
|
|
$(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBDRIVER) $(LIBS)
|
|
install -S 8k $(DRIVER)
|
|
|
|
imgrd.o: ramdisk/image.c
|
|
imgrd_s.o: ramdisk/image.s
|
|
|
|
$(LIBDRIVER):
|
|
cd $d/libdriver && $(MAKE)
|
|
|
|
ramdisk_image:
|
|
cd ramdisk && make
|
|
|
|
# install with other drivers
|
|
install: /usr/sbin/$(DRIVER)
|
|
/usr/sbin/$(DRIVER): $(DRIVER)
|
|
install -o root -cs $? $@
|
|
|
|
# clean up local files
|
|
clean:
|
|
rm -f $(DRIVER) *.o *.bak
|
|
cd ramdisk && make clean
|
|
|
|
depend:
|
|
/usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" memory.c ../libdriver/*.c > .depend
|
|
cd ramdisk && make depend
|
|
|
|
# Include generated dependencies.
|
|
include .depend
|
|
|