0

is there was a command on the Makefile for that, and if not is the language used by Makefile open source ? im not too afraid of processor code (if its is language)

Saxtheowl
  • 4,136
  • 5
  • 23
  • 32

1 Answers1

2

This has nothing to do with makefile itself. makefiles and make, are just tools designed to build files ("targets" in make parlance) with shell commands ("recipes") in an efficient way. A "phony" target such as all should not have a recipe that builds anything, but it can very well play a sound:

all: list of targets you want to build

tab play sound in your shell

In this way, the sound command will play only after all the targets listed have updated successfully.

Mark Galeck
  • 6,155
  • 1
  • 28
  • 55