# A Makefile to compile genRules in a comfortable way for various plattforms.
####################################################################
## include The uname variable
####################################################################
## Some variables, which control the compilation
####################################################################
# source
####################################################################
### targets
mv genRules.tmp $@
cp $^ ..
genRules.tmp: $(sources)
rm -f genRules.tmp
### clean up
#########################################################
rm -f $@
$(PERL) -e '$$un=`uname`;print "UNAME=";\
$$un =~ m"Darwin" && do {print "macintosh"};\
$$un =~ m"SunOS" && do {print "solaris"};\
$$un =~ m"Linux" && do {print "linux"};\
print "\n"' > $@