From: chas w. <ch...@us...> - 2009-08-28 12:47:56
|
Update of /cvsroot/linux-atm/linux-atm/src/q2931 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10690 Modified Files: Tag: V2_5_1 Makefile.am Added Files: Tag: V2_5_1 header.c script.awk Removed Files: Tag: V2_5_1 incl.pl Log Message: use the compiler to find include/atmsap.h (not to be confused with the atmsap.h that is in the local include directory). From: "Philip A. Prindeville" <phi...@re...> --- NEW FILE: header.c --- #include <linux/atmsap.h> --- NEW FILE: script.awk --- /^# 1 "[^"]*\/linux\/atmsap.h" / { print substr($3, 2, length($3) - 2); nextfile; } Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/q2931/Attic/Makefile.am,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** Makefile.am 5 Aug 2009 15:21:41 -0000 1.1.2.2 --- Makefile.am 28 Aug 2009 12:47:39 -0000 1.1.2.3 *************** *** 19,23 **** atm_it atm_lit atm_lsi atm_tcs atm_css atm_eqo atm_eqp atm_aap \ atm_asp atm_tor ! SYMFILES = $(srcdir)/uni.h $(shell @PERL@ $(srcdir)/incl.pl $(CFLAGS) linux/atmsap.h) default.nl: mknl.pl $(SYMFILES) --- 19,23 ---- atm_it atm_lit atm_lsi atm_tcs atm_css atm_eqo atm_eqp atm_aap \ atm_asp atm_tor ! SYMFILES = $(srcdir)/uni.h $(shell $(CC) $(CFLAGS) -E $(srcdir)/header.c | $(AWK) -f $(srcdir)/script.awk) default.nl: mknl.pl $(SYMFILES) --- incl.pl DELETED --- |