|
Revision 2, 1.3 KB
(checked in by emasson, 3 years ago)
|
|
initial import for the community edition
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | BEGIN { |
|---|
| 13 | print "//"; |
|---|
| 14 | print "// Do not edit this file."; |
|---|
| 15 | print "// This file is generated automagically from Xdefaults"; |
|---|
| 16 | print "// using the awk program found in defresources.awk."; |
|---|
| 17 | print "// This file will be rebuilt when Xdefaults is modified."; |
|---|
| 18 | print "//"; |
|---|
| 19 | print "// $Id: defresources.awk,v 1.1.1.1 2008/05/04 15:53:48 emasson Exp $"; |
|---|
| 20 | print "//"; |
|---|
| 21 | print "//\n\n"; |
|---|
| 22 | print "#include \"general.h\"\n"; |
|---|
| 23 | print "\n"; |
|---|
| 24 | print "CVSID(\"$Id: defresources.awk,v 1.1.1.1 2008/05/04 15:53:48 emasson Exp $\");\n"; |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | print "CVSID_DOT_H(GENERAL_H_CVSID);\n"; |
|---|
| 31 | printf "char *defaultXResourceString = \""; |
|---|
| 32 | } |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | |
|---|
| 37 | (! /^!/) && (NF != 0) { printf "%s\\n\\\n", $0 } |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | END { |
|---|
| 43 | print "\";\n"; |
|---|
| 44 | } |
|---|