Show
Ignore:
Timestamp:
05/17/09 10:39:07 (3 years ago)
Author:
mwhitworth
Message:

Start updating Xynth to use dynamic libraries for drivers, remove old configuration code and replace with registry equivalents.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/trunk/user/xynth/src/server/Makefile

    r910 r2049  
    44 
    55DIR = src/server/ 
     6 
     7SUBDIR-Y = video/bochs/ 
     8SUBDIR-Y = video/vga/ 
    69 
    710INCDIR += . ../lib ../../../libc/include ../../../posix/include \ 
     
    4750CFLAGS-$(VIDEO_VGA)       += -I../../../../../librtl -I../../../../../libc/include -I../../../../../posix/include 
    4851 
    49 OBJS-$(VIDEO_BOCHS)        += video/bochs/server.o 
    50 CFLAGS-$(VIDEO_BOCHS)     += -I../../../../../librtl -I../../../../../libc/include -I../../../../../posix/include 
    51  
    5252OBJS-$(VIDEO_HELPER)      += video/helper/console.o video/helper/irman.o video/helper/kbd.o video/helper/modes.o \ 
    5353                             video/helper/mouse.o video/helper/mtrr.o video/helper/tscreen.o 
     
    7878OBJS       += $(OBJS-Y) 
    7979EXTRA_OBJS += $(EXTRA_OBJS-Y) 
    80 LDFLAGS    += -nostdlib -pthread -lstdc -lposix -lm  ../../../libc/init/init.o -lxynth -lpthread -ldl -llinker -lregistry -lnetwork -dynamic-linker=/System/Runtime/liblinker.so 
     80LDFLAGS    += -nostdlib -pthread -lstdc -lposix -lm  ../../../libc/init/init.o -lxynth -lpthread -ldl -llinker -lregistry -lnetwork -lfile -dynamic-linker=/System/Runtime/liblinker.so 
    8181TARGET      = $(TARGET-Y) 
    8282