Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Borland MAKE v4.0 - symbolic targets http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Symbolic targets
----------------
A symbolic target forces MAKE to build multiple targets in a makefile
(you don't need to rely on linked dependencies). The dependency line
lists all the targets you want to build. You don't type any commands
for a symbolic target.

In the following makefile, the symbolic target "allFiles" builds both
FILE1.EXE and FILE2.EXE:

  allFiles: file1.exe file2.exe     #Note this target has no commands.
  file1.exe: file1.obj
        bcc file1.obj
  file2.exe: file2.obj
        bcc file2.obj

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson