openblt

a hobby OS from the late 90s
git clone http://frotz.net/git/openblt.git
Log | Files | Refs | LICENSE

Makefile (321B)


      1 BLTHOME := ../../
      2 include $(BLTHOME)make.conf
      3 
      4 BINARY		:= vfs.bin
      5 OBJS		:= vfs.o fs.o super.o vnode.o shm.o path.o rootfs.o bootfs.o
      6 CRT0		:= $(BLTHOME)lib/crtb.o
      7 LIBS		:= -lposix -lblt -ldl -lc
      8 SUBDIRS		:= drivers
      9 
     10 #CFLAGS 	+= -DVFS_SANDBOX -Isandbox -Wall
     11 
     12 sandbox: fs.o super.o vnode.o
     13 
     14 include $(BLTHOME)make.actions