Mercurial > mplayer.hg
view libdha/Makefile @ 4150:01d0a5fabf65
runtime cpudetect support #2 - still not working (i can't identify the problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp
author | alex |
---|---|
date | Mon, 14 Jan 2002 16:18:43 +0000 |
parents | 54528d9dad53 |
children | 36fb2dcd3ccc |
line wrap: on
line source
# makefile include ../config.mak VERSION = 0.1 SHORTNAME = libdha.so LIBNAME = libdha-$(VERSION).so SRCS=libdha.c pci.c pci_names.c OBJS=$(SRCS:.c=.o) CFLAGS = $(OPTFLAGS) -fPIC -I. -I.. -Wall -W .SUFFIXES: .c .o # .PHONY: all clean .c.o: $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) $(CC) -shared -o $(LIBNAME) $(OBJS) ln -sf $(LIBNAME) $(SHORTNAME) all: $(LIBNAME) $(SHORTNAME) pci_names.c: gzip -d -c oth/pci.db.gz >pci.db awk -f pci_db2c.awk pci.db test: $(CC) test.c -o test $(SHORTNAME) clean: rm -f *.o *.so *~ distclean: rm -f Makefile.bak *.o *.so test *~ .depend rm -f pci_dev_ids.c pci_ids.h pci_names.c pci_names.h pci_vendors.h pci.db dep: depend depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend install: cp $(LIBNAME) $(prefix)/lib/$(LIBNAME) rm -f $(prefix)/lib/libdha.so ln -sf $(LIBNAME) $(prefix)/lib/libdha.so ldconfig # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif