Page 1 of 1
Make
Posted: Tue Sep 17, 2002 10:28 am
by Mgst
how do I incorporate the make utility into textpad???
I am using the GNU make versin 3.79.1
thanks
mgst
Re: Make
Posted: Wed Sep 25, 2002 1:34 pm
by Berend Veldkamp
Go to Configure -> Preferences and select 'Tools'. Now click on Add and choose 'Program', browse to make.exe. Click Apply, Make will be added to the Tools in the treeview on the left. Select it, make sure 'Parameters' is empty and 'Initial folder' contains $FileDir. Press OK.
Now whenever you run the Make tool, it will run from the directory of your top-level document.
Berend
Re: Make
Posted: Sat Sep 28, 2002 12:39 pm
by Mgst
just that the gcc and libraries wasn't in the path.
i am using cygwin environment.
but fixed it with a simple batch file.
@echo off
path=c:\cygwin\bin;\cygwin\usr\local\bin;%PATH%
make %1
where %1 is the parameters to the makefile.