# The Mysteries Of Make #1

Started by Rainbow Sally, January 02, 2005, 05:03:46 AM

Previous topic - Next topic

Rainbow Sally

Okay.  Hit a target once... so I'm feeling lucky.  :-)


####################################################
# Using POMAKE.EXE to write files.
# The Mysteries Of Make #1
# Save this file as "make_hello.txt"
# Usage: on the command line type POMAKE -f make_hello.txt


####################################################
# Here's what we want to write

MSG = Hello!

####################################################
# .SILENT = echo off

.SILENT

####################################################
# This is the uh... "target". The Name can be anything.

hello.txt:
echo $(MSG) >HELLO.TXT



---------------
DOS - It's your right.  Use it or lose it.

Rainbow Sally

The Mysteries Of Make are now being posted in our new forum.

Work in progress
Doing research? Experimenting with algorithms, optimizations...?

Thanks Pele!

.