blob: 4115b214323958a57c349d5a19c58c67e1fc0cb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
EXTRA_DIST = README pci_db2c.awk
SUBDIRS = bin kernelhelper oth sysdep
CFLAGS = @CFLAGS@ @STATIC@
if HAVE_VIDIX
dha_lib = libdha.la
endif
awk_generated = pci_dev_ids.c pci_ids.h pci_names.c pci_names.h pci_vendors.h
noinst_LTLIBRARIES = $(dha_lib)
libdha_la_SOURCES = libdha.c mtrr.c pci.c pci_names.c mmi.c
EXTRA_PROGRAMS = test
test_SOURCES = test.c
test_LDADD = $(top_builddir)/src/video_out/libdha/libdha.la
noinst_HEADERS = AsmMacros.h libdha.h
## for OpenBSD LIBS += -li386
## We have to create some files, on the fly, this is why this rule is needed.
pci_db2c.awk:
oth/pci.db:
$(awk_generated): pci_db2c.awk oth/pci.db
$(AWK) -f $(top_srcdir)/src/video_out/libdha/pci_db2c.awk \
$(top_srcdir)/src/video_out/libdha/oth/pci.db
pci_names.lo: $(awk_generated)
source='$*.c' object='$@' libtool=yes \
depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' \
$(CCDEPMODE) $(depcomp) \
$(LTCOMPILE) -c -o $@ `test -f $*.c || echo '$(srcdir)/'`$*.c
debug:
@$(MAKE) CFLAGS="$(DEBUG_CFLAGS) @STATIC@ -DXINE_COMPILE"
install-debug: debug
@list='$(SUBDIRS)'; for subdir in $$list; do \
(cd $$subdir && $(MAKE) $@) || exit;\
done;
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
mostlyclean-generic:
-rm -f *~ \#* .*~ .\#* test
-rm -f $(awk_generated)
maintainer-clean-generic:
-@echo "This command is intended for maintainers to use;"
-@echo "it deletes files that may require special tools to rebuild."
-rm -f Makefile.in
|