Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1065 → Rev 1689

/shark/trunk/ports/makefile
File deleted
/shark/trunk/ports/snapshot/makefile
File deleted
/shark/trunk/ports/snapshot/Makefile
0,0 → 1,20
# Snapshot Library
 
ifndef BASE
BASE=../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = snapshot
 
OBJS_PATH = $(BASE)/ports/snapshot
 
SNAPSHOT = snapshot.o
 
OBJS = $(SNAPSHOT)
 
C_OPT += -I./include -I. -I.. -I../../drivers/fb/include
 
include $(BASE)/config/lib.mk
 
/shark/trunk/ports/zlib/makefile
File deleted
/shark/trunk/ports/zlib/Makefile
0,0 → 1,22
# The Frame Buffer Device
 
ifndef BASE
BASE=../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = zlib
 
OBJS_PATH = $(BASE)/ports/zlib
 
ZLIB = adler32.o compress.o crc32.o deflate.o gzio.o\
infblock.o infcodes.o inffast.o inflate.o inftrees.o\
infutil.o trees.o uncompr.o zutil.o
 
OBJS = $(ZLIB)
 
C_OPT += -I../../../drivers/linuxc26/include -I./include -I. -I..
 
include $(BASE)/config/lib.mk
 
/shark/trunk/ports/mesa/makefile
File deleted
/shark/trunk/ports/mesa/src-glut.dos/makefile
File deleted
/shark/trunk/ports/mesa/src-glut.dos/Makefile
0,0 → 1,18
targets:= libglut.a
 
libglut.a-objs:= \
bitmap.o \
color.o \
globals.o \
models.o \
teapot.o \
window.o \
callback.o \
init.o \
menu.o \
overlay.o \
state.o
 
cppflags+= -I$(srctree)/drivers/linuxc26/include -I$(curdir)/../include \
-I$(curdir) -I$(curdir)/../
 
/shark/trunk/ports/mesa/src/makefile
File deleted
/shark/trunk/ports/mesa/src/tnl/Makefile
0,0 → 1,24
targets:= \
t_array_api.o \
t_import_array.o \
t_context.o \
t_eval_api.o \
t_imm_alloc.o \
t_imm_api.o \
t_imm_debug.o \
t_imm_dlist.o \
t_imm_elt.o \
t_imm_eval.o \
t_imm_exec.o \
t_imm_fixup.o \
t_pipeline.o \
t_vb_fog.o \
t_vb_light.o \
t_vb_normals.o \
t_vb_points.o \
t_vb_program.o \
t_vb_render.o \
t_vb_gentex.o \
t_vb_texmat.o \
t_vb_vertex.o
 
/shark/trunk/ports/mesa/src/math/Makefile
0,0 → 1,10
targets:= \
m_clip_debug.o \
m_norm_debug.o \
m_xform_debug.o \
m_eval.o \
m_matrix.o \
m_translate.o \
m_vector.o \
m_xform.o
 
/shark/trunk/ports/mesa/src/swrast/Makefile
0,0 → 1,30
targets:= \
s_aaline.o \
s_aatriangle.o \
s_accum.o \
s_alphabuf.o \
s_alpha.o \
s_bitmap.o \
s_blend.o \
s_buffers.o \
s_context.o \
s_copypix.o \
s_depth.o \
s_drawpix.o \
s_feedback.o \
s_fog.o \
s_histogram.o \
s_imaging.o \
s_lines.o \
s_logic.o \
s_masking.o \
s_pixeltex.o \
s_points.o \
s_readpix.o \
s_span.o \
s_stencil.o \
s_texstore.o \
s_texture.o \
s_triangle.o \
s_zoom.o
 
/shark/trunk/ports/mesa/src/array_cache/Makefile
0,0 → 1,2
targets:= ac_context.o ac_import.o
 
/shark/trunk/ports/mesa/src/Makefile
0,0 → 1,71
targets:= libosmesa.a
 
libosmesa.a-objs:= \
accum.o \
api_arrayelt.o \
api_eval.o \
api_loopback.o \
api_noop.o \
api_validate.o \
attrib.o \
blend.o \
buffers.o \
clip.o \
colortab.o \
context.o \
convolve.o \
debug.o \
depth.o \
dispatch.o \
dlist.o \
drawpix.o \
enable.o \
enums.o \
eval.o \
extensions.o \
feedback.o \
fog.o \
get.o \
glapi.o \
glthread.o \
hash.o \
hint.o \
histogram.o \
image.o \
light.o \
lines.o \
matrix.o \
mmath.o \
pixel.o \
points.o \
polygon.o \
rastpos.o \
state.o \
stencil.o \
texcompress.o \
texformat.o \
teximage.o \
texobj.o \
texstate.o \
texstore.o \
texutil.o \
varray.o \
vpexec.o \
vpparse.o \
vpstate.o \
vtxfmt.o \
array_cache/ \
swrast/ \
swrastst/ \
tnl/ \
math/ \
x86/ \
osmesa/ \
imports.o
 
exported-aflags:= -I$(srctree)/drivers/linuxc26/include/asm \
-I$(srctree)/ports/mesa/include
 
exported-cppflags:= -I$(srctree)/drivers/linuxc26/include \
-I$(srctree)/ports/mesa/include -I$(srctree)/ports/mesa/src
 
/shark/trunk/ports/mesa/src/swrastst/Makefile
0,0 → 1,2
targets:= ss_context.o ss_triangle.o ss_vb.o
 
/shark/trunk/ports/mesa/src/x86/Makefile
0,0 → 1,11
targets:= \
asm_common_x86.o \
common_x86.o \
glapi_x86.o \
mmx_blend.o \
x86.o \
x86_cliptest.o \
xform2_x86.o \
xform3_x86.o \
xform4_x86.o
 
/shark/trunk/ports/mesa/src/osmesa/Makefile
0,0 → 1,2
targets:= osmesa.o
 
/shark/trunk/ports/mesa/src-glu/makefile
File deleted
/shark/trunk/ports/mesa/src-glu/Makefile
0,0 → 1,18
targets:= libglu.a
 
libglu.a-objs:= \
glu.o \
mipmap.o \
nurbs.o \
nurbsutl.o \
project.o \
tess.o \
nurbscrv.o \
nurbssrf.o \
polytest.o \
quadric.o \
tesselat.o
 
cppflags+= -I$(srctree)/drivers/linuxc26/include -I$(curdir)/../include \
-I$(curdir) -I$(curdir)/../
 
/shark/trunk/ports/mesa/Makefile
0,0 → 1,5
targets:= \
src/ \
src-glu/ \
src-glut.dos/
 
/shark/trunk/ports/fftw/makefile
File deleted
/shark/trunk/ports/fftw/rfftw/makefile
File deleted
/shark/trunk/ports/fftw/rfftw/Makefile
0,0 → 1,27
# The real FFTW library
 
ifndef BASE
BASE=../../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = fftr
 
OBJS_PATH = $(BASE)/ports/fftw/rfftw
 
OTHERINCL += -I$(BASE)/ports/fftw/include
 
OBJS = frc_1.o frc_2.o frc_3.o frc_4.o frc_5.o frc_6.o frc_7.o frc_8.o \
frc_9.o frc_10.o frc_11.o frc_12.o frc_13.o frc_14.o frc_15.o \
frc_16.o frc_32.o frc_64.o frc_128.o fhf_2.o fhf_3.o fhf_4.o \
fhf_5.o fhf_6.o fhf_7.o fhf_8.o fhf_9.o fhf_10.o fhf_16.o \
fhf_32.o fcr_1.o fcr_2.o fcr_3.o fcr_4.o fcr_5.o fcr_6.o \
fcr_7.o fcr_8.o fcr_9.o fcr_10.o fcr_11.o fcr_12.o fcr_13.o \
fcr_14.o fcr_15.o fcr_16.o fcr_32.o fcr_64.o fcr_128.o fhb_2.o \
fhb_3.o fhb_4.o fhb_5.o fhb_6.o fhb_7.o fhb_8.o fhb_9.o fhb_10.o \
fhb_16.o fhb_32.o rconfig.o rplanner.o rexec.o rexec2.o rfftwnd.o \
rgeneric.o
# rfftwf77.o
 
include $(BASE)/config/lib.mk
/shark/trunk/ports/fftw/fftw/makefile
File deleted
/shark/trunk/ports/fftw/fftw/Makefile
0,0 → 1,29
# The complex FFTW library
 
ifndef BASE
BASE=../../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = fftc
 
OBJS_PATH = $(BASE)/ports/fftw/fftw
 
OTHERINCL += -I$(BASE)/ports/fftw/include
 
OBJS = fn_1.o fn_2.o fn_3.o fn_4.o fn_5.o fn_6.o fn_7.o fn_8.o fn_9.o \
fn_10.o fn_11.o fn_12.o fn_13.o fn_14.o fn_15.o fn_16.o fn_32.o \
fn_64.o ftw_2.o ftw_3.o ftw_4.o ftw_5.o ftw_6.o ftw_7.o ftw_8.o \
ftw_9.o ftw_10.o ftw_16.o ftw_32.o ftw_64.o fni_1.o fni_2.o \
fni_3.o fni_4.o fni_5.o fni_6.o fni_7.o fni_8.o fni_9.o fni_10.o \
fni_11.o fni_12.o fni_13.o fni_14.o fni_15.o fni_16.o fni_32.o \
fni_64.o ftwi_2.o ftwi_3.o ftwi_4.o ftwi_5.o ftwi_6.o ftwi_7.o \
ftwi_8.o ftwi_9.o ftwi_10.o ftwi_16.o ftwi_32.o ftwi_64.o \
config.o planner.o twiddle.o executor.o generic.o fftwnd.o malloc.o \
rader.o putils.o \
wisdom.o wisdomio.o
#fftwf77.o timer.o
 
include $(BASE)/config/lib.mk
 
/shark/trunk/ports/fftw/faq/makefile
File deleted
/shark/trunk/ports/fftw/faq/Makefile
0,0 → 1,12
all:
@echo converting 1 ...
perl bfnnconv.pl fftw-faq.bfnn
@echo converting 2 ...
perl bfnnconv.pl fftw-faq.bfnn
 
install-html: all
cp fftw-faq.html/* $(HOME)/WWW/faq/
 
clean:
rm -f *~ core a.out *.lout *.ps *.info *.ascii *.xrefdb *.post
rm -rf *.html
/shark/trunk/ports/fftw/Makefile
0,0 → 1,7
 
.PHONY: all install clean cleanall depend
 
all install clean cleanall depend::
make -C rfftw $@
make -C fftw $@
 
/shark/trunk/ports/first/makefile
File deleted
/shark/trunk/ports/first/fsf_include/tests/makefile
File deleted
/shark/trunk/ports/first/fsf_include/tests/shark_glue/makefile
File deleted
/shark/trunk/ports/first/fsf_include/tests/shark_glue/Makefile
0,0 → 1,20
#
# util_linux -> compiles the tracer utilities under Linux
#
 
ifndef BASE
BASE=../../..
endif
 
.PHONY: util_dos util_linux clean
 
all: udpdump
 
udpdump: udpdump.c
gcc -Wimplicit-function-declaration -Wall -ggdb\
-I$(BASE)/tracer/include -I$(BASE)/oslib udpdump.c -o udpdump
 
clean:
rm -rf *.o udpdump
 
 
/shark/trunk/ports/first/fsf_include/tests/fsf_negotiation_test/makefile
File deleted
/shark/trunk/ports/first/fsf_include/tests/fsf_negotiation_test/Makefile
0,0 → 1,29
#
#
ifeq ($(OS), S)
BASE=../../../../..
OSNAME = shark_glue
export BASE
 
include $(BASE)/config/config.mk
endif
 
PROGS= $(OS)_$(WL)_negotiation_test
 
ifeq ($(OS), S)
include $(BASE)/config/example.mk
endif
 
$(OS)_$(WL)_negotiation_test:
make -f $(SUBMAKE) APPNAME=$(PROGS) APP=fsf_negotiation_test INIT= OTHEROBJS="../$(OSNAME)/initfile.o ../$(OSNAME)/shark.o ../$(OSNAME)/net_print.o" OTHERINCL="-I../common" SHARKOPT="__INPUT__ __FIRST__ __NEW_TRACER__ __LINUXC26__ __PCI__ __NET__ __GRX__"
 
ifeq ($(OS), M)
 
HERE=$(shell /bin/pwd)
export HERE
 
$(PROGS):
cd /home/marte/fsf ; make $(PROGS)
 
endif
 
/shark/trunk/ports/first/fsf_include/tests/synch_obj_test/makefile
File deleted
/shark/trunk/ports/first/fsf_include/tests/synch_obj_test/Makefile
0,0 → 1,19
#
#
ifeq ($(OS), S)
BASE=../../../../..
OSNAME = shark_glue
export BASE
 
include $(BASE)/config/config.mk
endif
 
PROGS= $(OS)_$(WL)_synch_test
 
ifeq ($(OS), S)
include $(BASE)/config/example.mk
endif
 
$(OS)_$(WL)_synch_test:
make -f $(SUBMAKE) APPNAME=$(PROGS) APP=fsf_synch_obj_test INIT= OTHEROBJS="../$(OSNAME)/initfile.o ../$(OSNAME)/shark.o ../$(OSNAME)/net_print.o" OTHERINCL="-I../common" SHARKOPT="__INPUT__ __FIRST__ __NEW_TRACER__ __LINUXC26__ __PCI__ __NET__ __GRX__"
 
/shark/trunk/ports/first/fsf_include/tests/Makefile
0,0 → 1,44
ifndef OS
OS=S
endif
 
ifndef WL
WL=0
endif
 
ifeq ($(OS), S)
include ../../../../shark.cfg
endif
 
ifeq ($(OS), M)
endif
 
export OS
export WL
 
ifeq ($(findstring NEW,$(TRACER)) , NEW)
TRC = newtrace
endif
 
dirs := $(filter-out CVS cvs tefses shark_glue marte_glue common tabledriven makefile readme.txt newtrace README.TXT, $(wildcard *))
dirs += $(TRC)
p_all := $(addprefix prefixall_, $(dirs))
p_install := $(addprefix prefixinstall_, $(dirs))
p_clean := $(addprefix prefixclean_, $(dirs))
pcleanall := $(addprefix prefixcleanall_, $(dirs))
pdepend := $(addprefix prefixdepend_, $(dirs))
 
 
.PHONY: all clean
 
 
 
all: $(p_all)
 
clean: $(p_clean)
 
prefixall_%:
make -C $*
 
prefixclean_%:
make -C $* clean
/shark/trunk/ports/first/fsf_include/tests/fsf_jitter_test/makefile
File deleted
/shark/trunk/ports/first/fsf_include/tests/fsf_jitter_test/Makefile
0,0 → 1,19
#
#
ifeq ($(OS), S)
BASE=../../../../..
OSNAME = shark_glue
export BASE
 
include $(BASE)/config/config.mk
endif
 
PROGS= $(OS)_$(WL)_jitter_test
 
ifeq ($(OS), S)
include $(BASE)/config/example.mk
endif
 
$(OS)_$(WL)_jitter_test:
make -f $(SUBMAKE) APPNAME=$(PROGS) APP=jitter_test INIT= OTHEROBJS="../$(OSNAME)/initfile.o ../$(OSNAME)/shark.o ../$(OSNAME)/net_print.o" OTHERINCL="-I../common" SHARKOPT="__INPUT__ __FIRST__ __NEW_TRACER__ __LINUXC26__ __PCI__ __NET__ __GRX__"
 
/shark/trunk/ports/first/first-contract.c
34,7 → 34,7
#include <kernel/descr.h>
#include <kernel/func.h>
#include <pistar.h>
#include <ll/i386/string.h>
#include <arch/i386/string.h>
 
#define MAX_SHARED_NAME 15
 
/shark/trunk/ports/first/include/pistar.h
90,7 → 90,7
#define __PISTAR_H__
 
#include <kernel/types.h>
#include "ll/sys/cdefs.h"
#include <arch/sys/cdefs.h>
 
__BEGIN_DECLS
 
/shark/trunk/ports/first/modules/fedfstar.c
37,8 → 37,8
 
#include "ll/i386/64bit.h"
#include "fedfstar.h"
#include <ll/stdio.h>
#include <ll/string.h>
#include <arch/stdio.h>
#include <arch/string.h>
#include <kernel/model.h>
#include <kernel/descr.h>
#include <kernel/var.h>
/shark/trunk/ports/first/modules/tdstar.c
36,8 → 36,8
*/
#include "fsf.h"
#include "tdstar.h"
#include <ll/stdio.h>
#include <ll/string.h>
#include <arch/stdio.h>
#include <arch/string.h>
#include <kernel/model.h>
#include <kernel/descr.h>
#include <kernel/var.h>
/shark/trunk/ports/first/modules/mpegstar.c
36,8 → 36,8
*/
 
 
#include <ll/stdio.h>
#include <ll/string.h>
#include <arch/stdio.h>
#include <arch/string.h>
#include <kernel/model.h>
#include <kernel/descr.h>
#include <kernel/var.h>
/shark/trunk/ports/first/modules/pistar.c
54,8 → 54,8
 
 
#include <ll/ll.h>
#include <ll/string.h>
#include <ll/stdio.h>
#include <arch/string.h>
#include <arch/stdio.h>
#include <kernel/const.h>
#include <sys/types.h>
#include <kernel/descr.h>
/shark/trunk/ports/first/modules/edfstar.c
36,8 → 36,8
*/
 
#include "edfstar.h"
#include <ll/stdio.h>
#include <ll/string.h>
#include <arch/stdio.h>
#include <arch/string.h>
#include <kernel/model.h>
#include <kernel/descr.h>
#include <kernel/var.h>
/shark/trunk/ports/first/modules/rmstar.c
36,8 → 36,8
*/
 
#include "rmstar.h"
#include <ll/stdio.h>
#include <ll/string.h>
#include <arch/stdio.h>
#include <arch/string.h>
#include <kernel/model.h>
#include <kernel/descr.h>
#include <kernel/var.h>
/shark/trunk/ports/first/modules/nonestar.c
36,8 → 36,8
*/
 
 
#include <ll/stdio.h>
#include <ll/string.h>
#include <arch/stdio.h>
#include <arch/string.h>
#include <kernel/model.h>
#include <kernel/descr.h>
#include <kernel/var.h>
/shark/trunk/ports/first/modules/posixstar.c
36,8 → 36,8
*/
 
 
#include <ll/stdio.h>
#include <ll/string.h>
#include <arch/stdio.h>
#include <arch/string.h>
#include <kernel/model.h>
#include <kernel/descr.h>
#include <kernel/var.h>
/shark/trunk/ports/first/Makefile
0,0 → 1,21
# The Frame Buffer Device
ifndef BASE
BASE=../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = first
 
OBJS_PATH = $(BASE)/ports/first
 
FIRST = first-contract.o first-server.o first-sync.o server-task.o first-error.o \
./modules/grubstar.o ./modules/posixstar.o ./modules/fedfstar.o ./modules/cbsnhstar.o \
./modules/edfstar.o ./modules/cbsstar.o ./modules/rmstar.o \
./modules/nonestar.o ./modules/pistar.o ./modules/tdstar.o
 
OBJS = $(FIRST)
 
C_OPT += -I./fsf_include -I./include -I. -I..
 
include $(BASE)/config/lib.mk
/shark/trunk/ports/dynalink/makefile
File deleted
/shark/trunk/ports/dynalink/elf.c
22,7 → 22,7
#include <ll/i386/cons.h>
#include <ll/i386/error.h>
#include <ll/i386/mem.h>
#include <ll/ctype.h>
#include <arch/ctype.h>
#include <ll/i386/x-bios.h>
 
#include "format.h"
/shark/trunk/ports/dynalink/dynalink.c
23,7 → 23,7
#include <ll/i386/cons.h>
#include <ll/i386/error.h>
#include <ll/i386/mem.h>
#include <ll/ctype.h>
#include <arch/ctype.h>
#include <ll/i386/x-bios.h>
 
#include "format.h"
/shark/trunk/ports/dynalink/Makefile
0,0 → 1,29
# Dynalink
 
ifndef BASE
BASE=../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = dynalink
 
OBJS_PATH = $(BASE)/dynalink
 
 
OBJS = dynalink.o elf.o
 
OTHERINCL += -I$(BASE)/drivers/linuxc26/include -I./include -I.
OTHERINCL += -I$(BASE)/drivers/pci/include
OTHERINCL += -I$(BASE)/drivers/input/include
 
 
 
C_OPT += -D__KERNEL__ -D__i386__ $(CFG_VIDEO_OPT)
 
include $(BASE)/config/lib.mk
 
clean::
rm -f $(OBJS)
rm -f deps
 
/shark/trunk/ports/tftp/makefile
File deleted
/shark/trunk/ports/tftp/Makefile
0,0 → 1,6
targets:= libtftp.a
 
libtftp.a-objs:= tftp.o endn.o
 
cppflags+= -I$(srctree)/ports/tftp/include -I$(srctree)/drivers/net/include/
 
/shark/trunk/ports/Makefile
0,0 → 1,2
targets:= mesa/ servo/ tftp/
 
/shark/trunk/ports/didma/makefile
File deleted
/shark/trunk/ports/didma/Makefile
0,0 → 1,18
# The DIDMA library
 
ifndef BASE
BASE=../..
endif
 
include $(BASE)/config/config.mk
 
LIBRARY = didma
 
OBJS_PATH = $(BASE)/ports/didma
 
# Object files
OTHERINCL=-I ./include
OBJS = didma.o
 
include $(BASE)/config/lib.mk
 
/shark/trunk/ports/servo/makefile
File deleted
/shark/trunk/ports/servo/Makefile
0,0 → 1,6
targets:= libservo.a
 
libservo.a-objs:= servo.o
 
cppflags+= -I$(curdir)/include -I$(curdir) -I$(srctree)/drivers/serial/include