#--------------------------------------------------------------------- # Copyright (C) GFD Dennou Club, 2007. All rights reserved. #--------------------------------------------------------------------- #= Makefile for ifc # # * Takehiro Shin-ichi, Youhei SASAKI # * 2007/10/15 (Youhei SASAKI) Create # ###################################################################### # # #== Settings # OLDSTABLE = sarge # Debian Cordname STABLE = etch # #TESTING = lenny # CHMOD = 664 # Set file mode CHGRP = cc-env # Set group # End Settings ###################################################################### #== Rules # all: help help: @echo "" @echo " make html :" @echo " Make HTML files from RD files" @echo "" @echo " make symlink :" @echo " Create symbolic link debian/* to sarge/, etch/, " @echo "" html: make -f Makefile.rd2html all chmod: chmod $(CHMOD) debian/* ; \ chgrp $(CHGRP) debian/* ; \ symlink: chmod @echo "Create symbolic link ..." @for codename in $(OLDSTABLE) $(STABLE) ; do \ cd $$codename ; \ ln -s ../debian/* . 2>/dev/null ; \ cd ../ ;\ done @echo "done"