diff options
author | Zheng Da <zhengda1936@gmail.com> | 2009-12-06 23:52:08 +0100 |
---|---|---|
committer | Zheng Da <zhengda1936@gmail.com> | 2009-12-06 23:52:08 +0100 |
commit | 3af752e9402d2938c7302575f456cef40db971d4 (patch) | |
tree | 90b84ae480a714da8df3399750ea60e99b2374a4 /ddekit_test/Makefile | |
parent | d0dac02619cdfd47cc6e1f2a29a48b9a8eeaf34f (diff) |
check in a test program for the ddekit library.
Diffstat (limited to 'ddekit_test/Makefile')
-rw-r--r-- | ddekit_test/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ddekit_test/Makefile b/ddekit_test/Makefile new file mode 100644 index 00000000..d2960560 --- /dev/null +++ b/ddekit_test/Makefile @@ -0,0 +1,31 @@ +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 2008 Free Software Foundation, Inc. +# This file is part of the GNU Hurd. +# +# The GNU Hurd is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# The GNU Hurd is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with the GNU Hurd; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + +dir := test +makemode := server + +SRCS = main.c +LCLHDRS = +DIST_FILES = +HURDLIBS = ddekit +target = test +MIGSTUBS = +OBJS = $(SRCS:.c=.o) $(MIGSTUBS) + +include ../Makeconf + +CFLAGS = -I../libddekit/include |