Linux kernel & device driver programming

Cross-Referenced Linux and Device Driver Code

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]
Version: [ 2.6.11.8 ] [ 2.6.25 ] [ 2.6.25.8 ] [ 2.6.31.13 ] Architecture: [ i386 ]
  1 
  2 # targets to build
  3 TARGETS-vbistuff := \
  4         vbistuff/ntsc-cc
  5 ifeq ($(FOUND_ZVBI),yes)
  6 TARGETS-vbistuff += \
  7         vbistuff/alevtd
  8 endif
  9 
 10 HTML-alevtd  := \
 11         vbistuff/alevt.css.h \
 12         vbistuff/top.html.h \
 13         vbistuff/bottom.html.h \
 14         vbistuff/about.html.h
 15 
 16 # objects for targets
 17 vbistuff/alevtd: \
 18         vbistuff/alevtd.o \
 19         vbistuff/request.o \
 20         vbistuff/response.o \
 21         vbistuff/page.o \
 22         common/vbi-data.o \
 23         libng/devices.o
 24 
 25 vbistuff/ntsc-cc: vbistuff/ntsc-cc.o
 26 
 27 # libraries to link
 28 vbistuff/alevtd  : LDLIBS  += $(VBI_LIBS)
 29 vbistuff/ntsc-cc : LDLIBS  += $(ATHENA_LIBS)
 30 
 31 # global targets
 32 all:: $(TARGETS-vbistuff)
 33 
 34 install::
 35         $(INSTALL_PROGRAM) -s $(TARGETS-vbistuff) $(bindir)
 36 
 37 clean::
 38         rm -f $(HTML-alevtd)
 39 
 40 distclean::
 41         rm -f $(TARGETS-vbistuff)
 42 
 43 # special dependences
 44 vbistuff/alevtd.o: $(HTML-alevtd)
  This page was automatically generated by the LXR engine.