1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-10 13:57:47 +03:00

r10328: Add more emacs python-mode markers.

This commit is contained in:
Tim Potter 2005-09-19 21:44:36 +00:00 committed by Gerald (Jerry) Carter
parent 80bf842f56
commit 540a3649e8
7 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,5 @@
# tastes like -*- python -*-
Import('hostenv')
basic = hostenv.StaticLibrary('basic',
['version.c', 'xfile.c', 'debug.c', 'fault.c', 'pidfile.c',

View File

@ -1,3 +1,5 @@
# tastes like -*- python -*-
Import('hostenv')
charset = hostenv.StaticLibrary('charset',['iconv.c','charcnv.c'])
Export('charset')

View File

@ -1,3 +1,5 @@
# tastes like -*- python -*-
Import('hostenv')
Import('basic param')
popt_common = hostenv.StaticLibrary('popt_common',['popt_common.c',basic,param])

View File

@ -1,3 +1,5 @@
# tastes like -*- python -*-
Import('hostenv')
popt = hostenv.StaticLibrary('popt', ['findme.c','popt.c','poptconfig.c','popthelp.c','poptparse.c'])
Export('popt')

View File

@ -1,3 +1,5 @@
# tastes like -*- python -*-
Import('hostenv')
Import('talloc basic popt_common popt param')
registry = hostenv.StaticLibrary('registry',

View File

@ -1,3 +1,5 @@
# tastes like -*- python -*-
Import('hostenv')
talloc = hostenv.StaticLibrary('talloc',['talloc.c'])
Export('talloc')

View File

@ -1,3 +1,5 @@
# tastes like -*- python -*-
Import('hostenv')
param = hostenv.StaticLibrary('loadparm',['loadparm.c','params.c'])
Export('param')