vshost-util-vserver

Build script and sources for util-vserver.
git clone https://ccx.te2000.cz/git/vshost-util-vserver
Log | Files | Refs

Makefile-files (1719B)


      1 ## $Id$  -*- makefile -*-
      2 
      3 ## Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
      4 ##  
      5 ## This program is free software; you can redistribute it and/or modify
      6 ## it under the terms of the GNU General Public License as published by
      7 ## the Free Software Foundation; either version 2, or (at your option)
      8 ## any later version.
      9 ##  
     10 ## This program is distributed in the hope that it will be useful,
     11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 ## GNU General Public License for more details.
     14 ##  
     15 ## You should have received a copy of the GNU General Public License
     16 ## along with this program; if not, write to the Free Software
     17 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
     18 ##  
     19 
     20 tests_dietprogs =		tests/getctx \
     21 				tests/getinitpid \
     22 				tests/vserver-info
     23 
     24 noinst_PROGRAMS +=		tests/escaperoot \
     25 				tests/forkbomb \
     26 				tests/testipc \
     27 				tests/testlimit \
     28 				tests/testopenf \
     29 				$(tests_dietprogs)
     30 
     31 
     32 DIETPROGS +=			$(tests_dietprogs)
     33 
     34 tests_escaperoot_SOURCES	=  tests/escaperoot.c
     35 tests_forkbomb_SOURCES		=  tests/forkbomb.c
     36 tests_testipc_SOURCES		=  tests/testipc.c
     37 tests_testlimit_SOURCES		=  tests/testlimit.c
     38 tests_testopenf_SOURCES		=  tests/testopenf.c
     39 
     40 tests_getctx_SOURCES		=  tests/getctx.c
     41 tests_getctx_LDADD		=  $(VSERVER_LDADDS)
     42 tests_getctx_LDFLAGS		=  $(VSERVER_LDFLGS)
     43 
     44 tests_getinitpid_SOURCES	=  tests/getinitpid.c
     45 tests_getinitpid_LDADD		=  $(VSERVER_LDADDS)
     46 tests_getinitpid_LDFLAGS	=  $(VSERVER_LDFLGS)
     47 
     48 tests_vserver_info_SOURCES	=  tests/vserver-info.c
     49 tests_vserver_info_LDADD	=  $(VSERVER_LDADDS)
     50 tests_vserver_info_LDFLAGS	=  $(VSERVER_LDFLGS)