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
Revision 1 as of 2019-07-05 12:39:17
  • make

make

GNU make utility to maintain groups of programs

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