openblt

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

Makefile (312B)


      1 BLTHOME := ../../
      2 include $(BLTHOME)make.conf
      3 
      4 CFLAGS		+= -fno-rtti -fno-exceptions -fno-pic -O2
      5 LIBS		:= -lposix -lblt -lc
      6 BINARY		:= window_server.bin
      7 
      8 OBJS := main.o GraphicsContext.o Region.o  \
      9 	Window.o WindowManager.o Renderer_8bpp.o \
     10 	vga.o Renderer_vga.o SerialMouse.o
     11 
     12 include $(BLTHOME)make.actions
     13