diff options
author | Zheng Da <zhengda1936@gmail.com> | 2009-12-21 03:00:41 +0100 |
---|---|---|
committer | Zheng Da <zhengda1936@gmail.com> | 2009-12-21 03:00:41 +0100 |
commit | 7ccfc1fdb1c0030e6e2105d50d76122b8f10c687 (patch) | |
tree | d84241c6a534d9f3881c7ede383a5a424b7f7e59 /libdde_linux26/mk/tmpl/server | |
parent | 1f30702285010c0921c4d8266096c49e6f3bd533 (diff) |
check in mk.
Diffstat (limited to 'libdde_linux26/mk/tmpl/server')
-rw-r--r-- | libdde_linux26/mk/tmpl/server/Makefile | 9 | ||||
-rw-r--r-- | libdde_linux26/mk/tmpl/server/src/Makefile | 18 | ||||
-rw-r--r-- | libdde_linux26/mk/tmpl/server/src/main.c | 5 |
3 files changed, 32 insertions, 0 deletions
diff --git a/libdde_linux26/mk/tmpl/server/Makefile b/libdde_linux26/mk/tmpl/server/Makefile new file mode 100644 index 00000000..67d58733 --- /dev/null +++ b/libdde_linux26/mk/tmpl/server/Makefile @@ -0,0 +1,9 @@ +PKGDIR ?= .. +L4DIR ?= $(PKGDIR)/../.. + +# the default is to build the listed directories, provided that they +# contain a Makefile. If you need to change this, uncomment the following +# line and adapt it. +# TARGET = idl src lib server examples doc + +include $(L4DIR)/mk/subdir.mk diff --git a/libdde_linux26/mk/tmpl/server/src/Makefile b/libdde_linux26/mk/tmpl/server/src/Makefile new file mode 100644 index 00000000..8b0c2471 --- /dev/null +++ b/libdde_linux26/mk/tmpl/server/src/Makefile @@ -0,0 +1,18 @@ +PKGDIR ?= ../.. +L4DIR ?= $(PKGDIR)/../.. + +TARGET = $(PKGNAME) +# the default relocation address. This may be superseded by a STATIC file. +DEFAULT_RELOC = 0x01800000 + +# list your .c files here +SRC_C = main.c + +# if your server implements the server side of an idl defined in an idl-file +# of your package, list the idl file name(s) here (no path needed) +SERVERIDL = + +# list additional library paths and libraries here +LIBS = + +include $(L4DIR)/mk/prog.mk diff --git a/libdde_linux26/mk/tmpl/server/src/main.c b/libdde_linux26/mk/tmpl/server/src/main.c new file mode 100644 index 00000000..65eddcf8 --- /dev/null +++ b/libdde_linux26/mk/tmpl/server/src/main.c @@ -0,0 +1,5 @@ + +int main(int argc, char **argv) +{ + return 0; +} |