Skip to content

Commit 1a3e46b

Browse files
author
dmilos
committed
* init:[init] initial commit
0 parents  commit 1a3e46b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+486
-0
lines changed

01-Program/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Program('hello.c')

01-Program/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

02-Object/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Object('hello.c')

02-Object/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

03-Two/SConstruct

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
3+
print "Calling Program('hello.c')"
4+
Program('hello.c')
5+
print "Calling Program('goodbye.c')"
6+
Program('goodbye.c')
7+
print "Finished calling Program()"

03-Two/goodbye.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

03-Two/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

04-DiffOut/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Program('new_hello', 'hello.c')

04-DiffOut/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

05-MultiInputList/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Program('program', ['prog.c', 'file1.c', 'file2.c'])

05-MultiInputList/file1.c

Whitespace-only changes.

05-MultiInputList/file2.c

Whitespace-only changes.

05-MultiInputList/prog.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

06-MultiInputGlob/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Program('program', Glob('*.c'))

06-MultiInputGlob/file1.c

Whitespace-only changes.

06-MultiInputGlob/file2.c

Whitespace-only changes.

06-MultiInputGlob/prog.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

07-Share/SConstruct

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
common = ['common1.c', 'common2.c']
2+
foo_files = ['foo.c'] + common
3+
bar_files = ['bar.c'] + common
4+
Program('foo', foo_files)
5+
Program('bar', bar_files)

07-Share/bar.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world, Bar!\n");
5+
}

07-Share/common1.c

Whitespace-only changes.

07-Share/common2.c

Whitespace-only changes.

07-Share/foo.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world, Foo!\n");
5+
}

07-Share/prog.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

08-Library/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Library('foo', ['f1.c', 'f2.c', 'f3.c'])

08-Library/f1.c

Whitespace-only changes.

08-Library/f2.c

Whitespace-only changes.

08-Library/f3.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

09-SharedLibrary/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SharedLibrary('foo', ['f1.c', 'f2.c', 'f3.c'])

09-SharedLibrary/f1.c

Whitespace-only changes.

09-SharedLibrary/f2.c

Whitespace-only changes.

09-SharedLibrary/f3.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

10-CombineDifferent/Sconstruct

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
hello_list = Object('hello.c', CCFLAGS='-DHELLO')
2+
goodbye_list = Object('goodbye.c', CCFLAGS='-DGOODBYE')
3+
Program(hello_list + goodbye_list)

10-CombineDifferent/goodbye.c

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
int
2+
main_goodbay()
3+
{
4+
printf("Hello, world!\n");
5+
return 0;
6+
}

10-CombineDifferent/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Library('foo', ['f1.c', 'f2.c', 'f3.c'])
2+
Program('prog.c', LIBS=['foo'], LIBPATH=['.'])

11-LinkLibrary-LIBS-LIBPATH/f1.c

Whitespace-only changes.

11-LinkLibrary-LIBS-LIBPATH/f2.c

Whitespace-only changes.

11-LinkLibrary-LIBS-LIBPATH/f3.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

11-LinkLibrary-LIBS-LIBPATH/prog.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

12-ExpliciteNodes/SConstruct

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Entry('xyzzy') - sam detektuje jel File or Dir
2+
3+
hello_c = File('hello.c')
4+
Program(hello_c)

12-ExpliciteNodes/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

13-Print/SConstruct

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
object_list = Object( ['hello.c', 'goodbye.c'])
2+
program_list = Program(object_list)
3+
4+
print '------------'
5+
print "The object file is:", object_list
6+
print "The program file is:", program_list
7+
print '------------'

13-Print/goodbye.c

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
int
2+
main_goodbye()
3+
{
4+
printf("Hello, world!\n");
5+
return 1;
6+
}

13-Print/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

14-Decider/SConstruct

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Program('hello.c')
2+
Decider('MD5')
3+
## Decider('timestamp-newer') <=> Decider('make')
4+
## Decider('MD5') <> Decider('content')
5+
#Decider('MD5-timestamp')

14-Decider/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

15-CPPPATH/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Program('hello.c', CPPPATH = '.')

15-CPPPATH/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

16-Depends/SConstruct

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
first = Program('first.c')
2+
hello = Program('hello.c')
3+
goodbye = Program('goodbye.c')
4+
Depends(hello, goodbye)
5+
Depends(goodbye, first)
6+
Depends(hello, first)

16-Depends/first.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

16-Depends/goodbye.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

16-Depends/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

17-CCFLAGS/SConstruct

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
obj = Object('hello.c', CCFLAGS='-MD')

17-CCFLAGS/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

19-Ignore/SConstruct

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
hello = Program('hello.c')
2+
Ignore(hello, 'hello.h')
3+
Decider('MD5')

19-Ignore/hello.c

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include "hello.h"
2+
int
3+
main()
4+
{
5+
printf("Hello, world!\n");
6+
}

19-Ignore/hello.h

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//asda sd as

20-Requires/SConstruct

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import time
2+
3+
version_c_text = """
4+
char *date = "%s";
5+
""" % time.ctime(time.time())
6+
open('version.c', 'w').write(version_c_text)
7+
8+
version_obj = Object('version.c')
9+
10+
# hello = Program('hello.c', LINKFLAGS = str( version_obj[0] ) )
11+
hello = Program('hello.c', OBJS = [version_obj] )
12+
Requires(hello, version_obj)

20-Requires/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

20-Requires/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
char *date = "Wed Nov 19 17:39:58 2014";

21-AlwaysBuild/SConstruct

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Nece da radi: version = Object('version.c')
2+
#Nece da radi: AlwaysBuild(version)
3+
4+
hello = Program( 'asdasda', ['hello.c', 'version.c' ] )
5+
6+
AlwaysBuild(hello)

21-AlwaysBuild/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

21-AlwaysBuild/version.c

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
char *date = "Wed Nov 19 17:39:58 2014";

22-Environment-Print/SConstruct

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
env = Environment()
2+
3+
dict = env.Dictionary()
4+
5+
print '------------------------'
6+
print "CC is:", env.subst('$CC')
7+
print '------------------------'
8+
print "expand(CCCOM) is:", env.subst('$CCCOM')
9+
print '------------------------'
10+
print "original(CCCOM) is:", env['CCCOM']
11+
print '------------------------'
12+
13+
for key in ['OBJSUFFIX', 'LIBSUFFIX', 'PROGSUFFIX']:
14+
print "key = %s, value = %s" % (key, dict[key])
15+
16+
print '------------------------'
17+
keys = dict.keys()
18+
keys.sort()
19+
for key in keys:
20+
print "construction variable = '%s', value = '%s'" % (key, dict[key])
21+

23-Environment-Multiple/SConstruct

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
opt = Environment()
2+
dbg = Environment()
3+
4+
o = opt.Object('hello-opt', 'hello.c')
5+
opt.Program(o)
6+
7+
d = dbg.Object('hello-dbg', 'hello.c')
8+
dbg.Program(d)

23-Environment-Multiple/goodbye.c

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
int
2+
main()
3+
{
4+
printf("Goodbye, world!\n");
5+
return 1;
6+
}

23-Environment-Multiple/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

24-Replace/SConstruct

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
env = Environment(CCFLAGS = ['-DMY_VALUE'])
3+
env.Append(CCFLAGS = ['-DLAST'])
4+
env.Program('hello.c')
5+

24-Replace/goodbye.c

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
return 1;
6+
}

24-Replace/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

25-Append/SConstruct

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
env = Environment(CCFLAGS = ['-DMY_VALUE'])
3+
env.Append(CCFLAGS = ['-DLAST'])
4+
env.Program('foo.c')

25-Append/hello.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int
2+
main()
3+
{
4+
printf("Hello, world!\n");
5+
}

0 commit comments

Comments
 (0)