1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Project : ipv6calc/databases/cc-assignment
# File : Makefile
# Version : $Id: 22b39c5d475f107c5519626c2c659e4d4d763374 $
# Copyright : 2013-2013 by Peter Bieringer <pb (at) bieringer.de>
#
# Information:
# Makefile for cc-assignment
all:
test -f db_cc_reg_assignment.h || ${MAKE} update
install:
echo "Nothing to do"
update:
echo "Generate new header file, if necessary"
./check-run-create.sh
updateclean:
echo "Delete header file"
rm -f db_cc_reg_assignment.h
distclean:
echo "Nothing to do"
autoclean:
echo "Nothing to do"
clean:
echo "Nothing to do"
updateforce:
${MAKE} updateclean
${MAKE} update
|