forked from altcloud/fence-virt
24 lines
688 B
Makefile
24 lines
688 B
Makefile
|
###############################################################################
|
||
|
###############################################################################
|
||
|
##
|
||
|
## Copyright (C) 2006 Red Hat, Inc.
|
||
|
##
|
||
|
## This copyrighted material is made available to anyone wishing to use,
|
||
|
## modify, copy, or redistribute it subject to the terms and conditions
|
||
|
## of the GNU General Public License v.2.
|
||
|
##
|
||
|
###############################################################################
|
||
|
###############################################################################
|
||
|
|
||
|
|
||
|
all:
|
||
|
make -C common
|
||
|
make -C client
|
||
|
make -C server
|
||
|
|
||
|
clean:
|
||
|
make -C common clean
|
||
|
make -C client clean
|
||
|
make -C server clean
|
||
|
|