MoinMoin Logo
  • Comments
  • Immutable Page
  • Menu
    • Navigation
    • RecentChanges
    • FindPage
    • Local Site Map
    • Help
    • HelpContents
    • HelpOnMoinWikiSyntax
    • Display
    • Attachments
    • Info
    • Raw Text
    • Print View
    • Edit
    • Load
    • Save
  • Login

Navigation

  • Start
  • Sitemap

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

  • make

make

GNU make utility to maintain groups of programs

Define a build graph from bottom-up.

Makefile

OTHER_STR=aaaaa
CURR_DATE=`date -u`

first_target: asd_target
        @echo "first target"

asd_target: other
        @echo "$(OTHER_STR) $(CURR_DATE) "

other:
        @#show the action
        echo "action"

Output:

echo "action"
action
aaaaa Fri  5 Jul 12:38:30 UTC 2019 
first target
  • MoinMoin Powered
  • Python Powered
  • GPL licensed
  • Valid HTML 4.01