Changing the directory a .tgt file #1334
-
I am very new to the OpenWatcom compiler and even newer to the IDE. I am trying to use a setup where I have my targets pointed to various output directories(IE: "/OUT/Client/Windows" and "/OUT/Server/Master",) but OpenWatcom puts the .tgt files in those directories. This is a bit of a problem because I'm trying to use Git on not just the source code, but also the IDE environment itself, and this forces me to set up complicated .gitignores to prevent catching the object and executable files. Is there a way for me to change the directory of the .tgt file without harming the operations of wmake? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Open Watcom IDE is graphical tool for handling make files that use same logical hierarchy of nodes as wmake tool. |
Beta Was this translation helpful? Give feedback.
Open Watcom IDE is graphical tool for handling make files that use same logical hierarchy of nodes as wmake tool.
The target is description of all dependants and rules to create target. All these rules are defined in IDE configuration files.
On run-time IDE generate make file which is run in wmake tool. You can not change logical hierarchy which is dictated by wmake functionality. If you want you can define location of files/objects by options for tools which generate resulting node/file. By default IDE definition files are located together with object files and uses relative path to root. Of cause you can use absolute path for files but then you cannot simply copy target from one project…