annotate src/usr/CMakeLists.txt @ 69:f236eba62a76

off-the-shelf cmakefile
author anatofuz
date Sun, 28 Jul 2019 20:03:15 +0900
parents 2fdcb0f953bb
children 6ebe7043702c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
1 cmake_minimum_required(VERSION 3.8)
59
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
2 set(CMAKE_C_COMPILER "/usr/bin/cc")
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
3 project(usr C ASM)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
4
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
5
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
6 set(CMAKE_C_FLAGS_DEBUG "-O0")
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
7 add_definitions(${PMAKE_ARGS})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
8 set(CMAKE_C_COMPILER "${CBC_COM}")
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
9
69
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
10 #include_directories("..")
63
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
11 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ")
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
12 set(CMAKE_C_LINK_EXECUTABLE "${KERNEL_LINK_EXECUTABLE}")
62
a28580a75faa fix build fs.img
anatofuz
parents: 61
diff changeset
13 set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${GCC_LIB} -nostdlib")
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
14
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
15 macro( GearsCommand )
69
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
16 include_directories(${CMAKE_SOURCE_DIR})
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
17 include_directories(${CMAKE_SOURCE_DIR}/usr)
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
18 include_directories(${CMAKE_BINARY_DIR}/usr/c)
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
19
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
20 set( _OPTIONS_ARGS )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
21 set( _ONE_VALUE_ARGS TARGET )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
22 set( _MULTI_VALUE_ARGS SOURCES )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
23 cmake_parse_arguments( _Gears "${_OPTIONS_ARGS}" "${_ONE_VALUE_ARGS}" "${_MULTI_VALUE_ARGS}" ${ARGN} )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
24
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
25 set (_Gears_CBC_SOURCES)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
26 set (_Gears_CSOURCES)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
27 foreach(i ${_Gears_SOURCES})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
28 if (${i} MATCHES "\\.cbc")
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
29 string(REGEX REPLACE "(.*).cbc" "c/\\1.c" j ${i})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
30 add_custom_command (
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
31 OUTPUT ${j}
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
32 DEPENDS ${i}
69
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
33 COMMAND "perl" "${CMAKE_SOURCE_DIR}/gearsTools/generate_stub.pl" "-o" ${j} ${i}
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
34 )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
35 list(APPEND _Gears_CBC_SOURCES ${j})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
36 elseif (${i} MATCHES "\\.cu")
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
37 string(REGEX REPLACE "(.*).cu" "c/\\1.ptx" j ${i})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
38 add_custom_command (
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
39 OUTPUT ${j}
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
40 DEPENDS ${i}
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
41 COMMAND nvcc ${NVCCFLAG} -c -ptx -o ${j} ${i}
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
42 )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
43 list(APPEND _Gears_CBC_SOURCES ${j})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
44 else()
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
45 set(j ${i})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
46 list(APPEND _Gears_CSOURCES ${j})
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
47 endif()
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
48 endforeach(i)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
49
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
50 add_custom_command (
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
51 OUTPUT c/${_Gears_TARGET}-context.c
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
52 DEPENDS ${_Gears_CBC_SOURCES}
69
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
53 COMMAND "perl" "${CMAKE_SOURCE_DIR}/gearsTools/generate_context.pl" "-o" ${_Gears_TARGET} ${_Gears_CBC_SOURCES}
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
54 )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
55 add_executable(${_Gears_TARGET} ${_Gears_CBC_SOURCES} ${_Gears_CSOURCES} c/${_Gears_TARGET}-context.c )
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
56 target_link_libraries(${_Gears_TARGET} ulib)
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
57 endmacro()
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
58
59
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
59 add_library(ulib STATIC ulib.c usys.S printf.c umalloc.c)
61
b3a3224e1823 fix link arguments...
anatofuz
parents: 60
diff changeset
60 #add_library(syslib string.c)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
61
62
a28580a75faa fix build fs.img
anatofuz
parents: 61
diff changeset
62 set(USR_COMMANDS cat echo grep init kill ln ls mkdir rm sh stressfs usertests wc zombie hello)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
63
59
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
64 foreach(cmd ${USR_COMMANDS})
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
65 GearsCommand (TARGET _${cmd} SOURCES ${cmd}.c)
8f435de13b91 fix cmakefiles
tobaru
parents: 58
diff changeset
66 endforeach(cmd)
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
67
63
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
68 set(_USR_COMMANDS)
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
69 foreach (i ${USR_COMMANDS})
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
70 list(APPEND _USR_COMMANDS "_${i}")
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
71 endforeach(i)
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
72
ab729eb8356b fix build usr command and fs.img
anatofuz
parents: 62
diff changeset
73 add_custom_target(fs.img ALL
69
f236eba62a76 off-the-shelf cmakefile
anatofuz
parents: 65
diff changeset
74 COMMAND ${CMAKE_SOURCE_DIR}/tools/mkfs fs.img ${_USR_COMMANDS} UNIX \; cp fs.img ${CMAKE_SOURCE_DIR}
64
58c79e0c5101 fix depend mkfs
one
parents: 63
diff changeset
75 DEPENDS ${_USR_COMMANDS} mkfs
58
f1b965f53d3b add tools userlists
tobaru
parents:
diff changeset
76 )