annotate vidix/drivers/Makefile @ 5257:1823c7dff423

Add Parsing off ftyp box and some more docs ref
author atmos4
date Fri, 22 Mar 2002 00:54:10 +0000
parents 8a3fdb124039
children 1972c3475d93
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3996
872781fef1b3 preliminary version
nick
parents:
diff changeset
1 # makefile
872781fef1b3 preliminary version
nick
parents:
diff changeset
2
872781fef1b3 preliminary version
nick
parents:
diff changeset
3 include ../../config.mak
872781fef1b3 preliminary version
nick
parents:
diff changeset
4
5148
8a3fdb124039 using LIBDIR instead prefix/lib/mplayer
alex
parents: 4691
diff changeset
5 BINDIR = $(LIBDIR)/vidix
4030
922241968c63 Embedding vidix
nick
parents: 3996
diff changeset
6
3996
872781fef1b3 preliminary version
nick
parents:
diff changeset
7
872781fef1b3 preliminary version
nick
parents:
diff changeset
8 RADEON_VID=radeon_vid.so
872781fef1b3 preliminary version
nick
parents:
diff changeset
9 RADEON_SRCS=radeon_vid.c
872781fef1b3 preliminary version
nick
parents:
diff changeset
10 RADEON_OBJS=radeon_vid.o
872781fef1b3 preliminary version
nick
parents:
diff changeset
11 RADEON_LIBS=-L../../libdha -ldha -lm
872781fef1b3 preliminary version
nick
parents:
diff changeset
12 RADEON_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -Wall -W
872781fef1b3 preliminary version
nick
parents:
diff changeset
13
872781fef1b3 preliminary version
nick
parents:
diff changeset
14 RAGE128_VID=rage128_vid.so
872781fef1b3 preliminary version
nick
parents:
diff changeset
15 RAGE128_SRCS=radeon_vid.c
872781fef1b3 preliminary version
nick
parents:
diff changeset
16 RAGE128_OBJS=rage128_vid.o
872781fef1b3 preliminary version
nick
parents:
diff changeset
17 RAGE128_LIBS=-L../../libdha -ldha
872781fef1b3 preliminary version
nick
parents:
diff changeset
18 RAGE128_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -Wall -W -DRAGE128
872781fef1b3 preliminary version
nick
parents:
diff changeset
19
4691
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
20 MACH64_VID=mach64_vid.so
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
21 MACH64_SRCS=mach64_vid.c
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
22 MACH64_OBJS=mach64_vid.o
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
23 MACH64_LIBS=-L../../libdha -ldha
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
24 MACH64_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -Wall -W -DRAGE128
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
25
4136
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
26 NVIDIA_VID=nvidia_vid.so
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
27 NVIDIA_SRCS=nvidia_vid.c
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
28 NVIDIA_OBJS=nvidia_vid.o
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
29 NVIDIA_LIBS=-L../../libdha -ldha -lm
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
30 NVIDIA_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -Wall -W
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
31
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
32 GENFB_VID=genfb_vid.so
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
33 GENFB_SRCS=genfb_vid.c
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
34 GENFB_OBJS=genfb_vid.o
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
35 GENFB_LIBS=-L../../libdha -ldha -lm
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
36 GENFB_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -Wall -W
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
37
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
38 MGA_VID=mga_vid.so
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
39 MGA_SRCS=mga_vid.c
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
40 MGA_OBJS=mga_vid.o
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
41 MGA_LIBS=-L../../libdha -ldha -lm
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
42 MGA_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -Wall -W
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
43
4139
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
44 MGA_CRTC2_VID=mga_crtc2_vid.so
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
45 MGA_CRTC2_SRCS=mga_vid.c
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
46 MGA_CRTC2_OBJS=mga_crtc2_vid.o
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
47 MGA_CRTC2_LIBS=-L../../libdha -ldha -lm
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
48 MGA_CRTC2_CFLAGS=$(OPTFLAGS) -fPIC -I. -I.. -Wall -W -DCRTC2
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
49
4691
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
50 all: $(RADEON_VID) $(RAGE128_VID) $(MACH64_VID) $(NVIDIA_VID) $(GENFB_VID) $(MGA_VID) $(MGA_CRTC2_VID)
3996
872781fef1b3 preliminary version
nick
parents:
diff changeset
51
872781fef1b3 preliminary version
nick
parents:
diff changeset
52
872781fef1b3 preliminary version
nick
parents:
diff changeset
53 .SUFFIXES: .c .o
872781fef1b3 preliminary version
nick
parents:
diff changeset
54
872781fef1b3 preliminary version
nick
parents:
diff changeset
55 # .PHONY: all clean
872781fef1b3 preliminary version
nick
parents:
diff changeset
56
872781fef1b3 preliminary version
nick
parents:
diff changeset
57 $(RADEON_OBJS): $(RADEON_SRCS)
872781fef1b3 preliminary version
nick
parents:
diff changeset
58 $(CC) -c $(RADEON_CFLAGS) -o $@ $<
872781fef1b3 preliminary version
nick
parents:
diff changeset
59
872781fef1b3 preliminary version
nick
parents:
diff changeset
60 $(RADEON_VID): $(RADEON_OBJS)
4030
922241968c63 Embedding vidix
nick
parents: 3996
diff changeset
61 $(LD) $(RADEON_LIBS) -shared -soname $(RADEON_VID) -o $(RADEON_VID) $(RADEON_OBJS)
3996
872781fef1b3 preliminary version
nick
parents:
diff changeset
62
872781fef1b3 preliminary version
nick
parents:
diff changeset
63 $(RAGE128_OBJS): $(RAGE128_SRCS)
872781fef1b3 preliminary version
nick
parents:
diff changeset
64 $(CC) -c $(RAGE128_CFLAGS) -o $@ $<
872781fef1b3 preliminary version
nick
parents:
diff changeset
65
872781fef1b3 preliminary version
nick
parents:
diff changeset
66 $(RAGE128_VID): $(RAGE128_OBJS)
4030
922241968c63 Embedding vidix
nick
parents: 3996
diff changeset
67 $(LD) $(RAGE128_LIBS) -shared -soname $(RAGE128_VID) -o $(RAGE128_VID) $(RAGE128_OBJS)
3996
872781fef1b3 preliminary version
nick
parents:
diff changeset
68
4691
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
69 $(MACH64_OBJS): $(MACH64_SRCS)
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
70 $(CC) -c $(MACH64_CFLAGS) -o $@ $<
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
71
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
72 $(MACH64_VID): $(MACH64_OBJS)
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
73 $(LD) $(MACH64_LIBS) -shared -soname $(MACH64_VID) -o $(MACH64_VID) $(MACH64_OBJS)
9c23a7497a6d Scratch for volunteers
nick
parents: 4215
diff changeset
74
4136
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
75 $(NVIDIA_OBJS): $(NVIDIA_SRCS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
76 $(CC) -c $(NVIDIA_CFLAGS) -o $@ $<
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
77
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
78 $(NVIDIA_VID): $(NVIDIA_OBJS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
79 $(LD) $(NVIDIA_LIBS) -shared -soname $(NVIDIA_VID) -o $(NVIDIA_VID) $(NVIDIA_OBJS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
80
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
81 $(GENFB_OBJS): $(GENFB_SRCS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
82 $(CC) -c $(GENFB_CFLAGS) -o $@ $<
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
83
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
84 $(GENFB_VID): $(GENFB_OBJS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
85 $(LD) $(GENFB_LIBS) -shared -soname $(GENFB_VID) -o $(GENFB_VID) $(GENFB_OBJS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
86
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
87 $(MGA_OBJS): $(MGA_SRCS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
88 $(CC) -c $(MGA_CFLAGS) -o $@ $<
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
89
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
90 $(MGA_VID): $(MGA_OBJS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
91 $(LD) $(MGA_LIBS) -shared -soname $(MGA_VID) -o $(MGA_VID) $(MGA_OBJS)
1080b7780d03 committed due to request of gabucino
alex
parents: 4030
diff changeset
92
4139
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
93 $(MGA_CRTC2_OBJS): $(MGA_CRTC2_SRCS)
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
94 $(CC) -c $(MGA_CRTC2_CFLAGS) -o $@ $<
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
95
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
96 $(MGA_CRTC2_VID): $(MGA_CRTC2_OBJS)
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
97 $(LD) $(MGA_CRTC2_LIBS) -shared -soname $(MGA_CRTC2_VID) -o $(MGA_CRTC2_VID) $(MGA_CRTC2_OBJS)
13d6395e8daa added mga_vid (also playback->offset is not set (fixing it on monday)
alex
parents: 4136
diff changeset
98
3996
872781fef1b3 preliminary version
nick
parents:
diff changeset
99 clean:
872781fef1b3 preliminary version
nick
parents:
diff changeset
100 rm -f *.o *.so *~
872781fef1b3 preliminary version
nick
parents:
diff changeset
101
872781fef1b3 preliminary version
nick
parents:
diff changeset
102 distclean:
872781fef1b3 preliminary version
nick
parents:
diff changeset
103 rm -f Makefile.bak *.o *.so test *~ .depend
872781fef1b3 preliminary version
nick
parents:
diff changeset
104
872781fef1b3 preliminary version
nick
parents:
diff changeset
105 dep: depend
872781fef1b3 preliminary version
nick
parents:
diff changeset
106
872781fef1b3 preliminary version
nick
parents:
diff changeset
107 depend:
872781fef1b3 preliminary version
nick
parents:
diff changeset
108 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
872781fef1b3 preliminary version
nick
parents:
diff changeset
109
872781fef1b3 preliminary version
nick
parents:
diff changeset
110 install:
4030
922241968c63 Embedding vidix
nick
parents: 3996
diff changeset
111 mkdir -p $(BINDIR)
4215
14b8bc735bf5 Use 'install' instead of 'cp'
nick
parents: 4139
diff changeset
112 install -m 755 -s -p *.so $(BINDIR)
3996
872781fef1b3 preliminary version
nick
parents:
diff changeset
113 #
872781fef1b3 preliminary version
nick
parents:
diff changeset
114 # include dependency files if they exist
872781fef1b3 preliminary version
nick
parents:
diff changeset
115 #
872781fef1b3 preliminary version
nick
parents:
diff changeset
116 ifneq ($(wildcard .depend),)
872781fef1b3 preliminary version
nick
parents:
diff changeset
117 include .depend
872781fef1b3 preliminary version
nick
parents:
diff changeset
118 endif