Sponsored Content
Full Discussion: Tool for make file
Top Forums Programming Tool for make file Post 89476 by Perderabo on Sunday 13th of November 2005 03:22:50 PM
Old 11-13-2005
The first program like this that I ever saw was mkmf which was added to early versions of BSD. HP-UX picked it up and still has it: mkmf man page.

The X consortium extended mkmf a bit and called it xmkmf. xmkmf will invoke a program called imake. And it is common for the generated makefiles to have a rule to invoke makedepend. Man pages: xmkmf, imake, makedepend.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Is there any non graphical tool that make selective merge between text files?

whitout using awk / sad and so on? (3 Replies)
Discussion started by: umen
3 Replies

2. AIX

big brother monitoring tool - make failed

Hi, Does anyone has installed bb on a unix system ? I am trying to install bb on aix 5.3 but I have the following message: If someone can help me probably there is a tool that I need to install ? I don't have C compiler I install gcc instead and gcc++ etc ... bb:/home/bb/bb1.9g-btf/src/ $ make... (0 Replies)
Discussion started by: touny
0 Replies

3. Linux

How to make a tool as 30-days evalution copy

Hi All, I am very curious to know that how to make a product/tool as evalution copy(trail version for 30days). I want to know this implemention process in linux(the tool is in Linux). If anybody have any scripts/articles/ideas please pass them to me. Please help me. Thanks in Advace,... (0 Replies)
Discussion started by: uday123
0 Replies

4. UNIX for Dummies Questions & Answers

how to open a text file using some tool such as gedit under gtk

how to open a text file using some tool such as gedit under gtk I list some text file names in a GtkCList . I want to open the file on when users click on the row. How to implement this ? Thanks (0 Replies)
Discussion started by: cy163
0 Replies

5. Programming

makeutility: how to get the make-file name inside of the make-file?

How I can get the current make-file name in a make-file So, if I run make with specified file:make -f target.mak is it possible to have the 'target' inside of the that 'target.mak' from the file name? (2 Replies)
Discussion started by: alex_5161
2 Replies

6. Shell Programming and Scripting

how to make some condition when program/tool unsuccesfully ends with error..

Simply, when i have tool "pdftotext", "sed" or "wget" and if this tool make an error in converting or downloading or something, I want to terminate my script...something like: if ; then exit 1 fi bud I dont know how..can you help guys?:confused: (3 Replies)
Discussion started by: Lukasito
3 Replies

7. AIX

which windows tool can burn iso file?

which windows tool can burn iso file? The iso file is download from IBM web site for HMC upgrade. How to burn this iso file to cd or dvd? (1 Reply)
Discussion started by: rainbow_bean
1 Replies

8. UNIX for Advanced & Expert Users

How to make "tab" key in mksnt tool kit case sensitive?

I am using MKS Toolkit on windows7, i observed that when i use "tab" key to complete a file/dir name converts into lower case. Eg: I am having a directory named "Dir1", note "D" is in caps. In unix if i had tried pressing "d" and "<tab>" resulted in no result. However in mksnt toolkit, it... (1 Reply)
Discussion started by: sarbjit
1 Replies

9. UNIX for Advanced & Expert Users

File comparsion tool

Hi All, Please suggest some file comparison tool in Linux. The tool have the provision for command line option for file comparison and the output will be stored in to html file. Thanks in advance (2 Replies)
Discussion started by: k_manimuthu
2 Replies
Gtk2::ImageView::Tool(3pm)				User Contributed Perl Documentation				Gtk2::ImageView::Tool(3pm)

NAME
Gtk2::ImageView::Tool - Interface for objects capable of being used as tools by Gtk2::ImageView DESCRIPTION
Gtk2::ImageView::Tool is an interface that defines how Gtk2::ImageView interacts with objects that acts as tools. Gtk2::ImageView delegates many of its most important tasks (such as drawing) to its tool which carries out all the hard work. The Gtk2::ImageView package comes with two tools; Gtk2::ImageView::Tool::Dragger and Gtk2::ImageView::Tool::Selector, but by implementing your own tool it is possible to extend Gtk2::ImageView to do stuff its author didn't imagine. Gtk2::ImageView uses Gtk2::ImageView::Tool::Dragger by default, as that tool is he most generally useful one. However, it is trivial to make it use another tool. my $view = Gtk2::ImageView->new; my $tool = Gtk2::ImageView::Tool::Selector ($view); $view->set_tool ($tool); Using the above code makes the view use the selector tool instead of the default dragger tool. HIERARCHY
Glib::Interface +----Gtk2::ImageView::Tool METHODS
boolean = $tool->button_press ($ev) o $ev (Gtk2::Gdk::Event) boolean = $tool->button_release ($ev) o $ev (Gtk2::Gdk::Event) cursor = $tool->cursor_at_point ($x, $y) o $x (integer) o $y (integer) Returns the cursor to display at the given coordinates. boolean = $tool->motion_notify ($ev) o $ev (Gtk2::Gdk::Event) $tool->paint_image ($opts, $drawable) o $opts (Gtk2::Gdk::Pixbuf::Draw::Opts) o $drawable (Gtk2::Gdk::Drawable) Called whenever the image view decides that any part of the image it shows needs to be redrawn. $tool->pixbuf_changed ($reset_fit, $rect) o $reset_fit (boolean) o $rect (Gtk2::Gdk::Rectangle) Indicate to the tool that either a part of, or the whole pixbuf that the image view shows has changed. This method is called by the view whenever its pixbuf or its tool changes. That is, when any of the following methods are used: Gtk2::ImageView::set_pixbuf() Gtk2::ImageView::set_tool() Gtk2::ImageView::damage_pixels() If the reset_fit parameter is TRUE, it means that a new pixbuf has been loaded into the view. tool : the tool reset_fit : whether the view is resetting its fit mode or not rect : rectangle containing the changed area or NULL SEE ALSO
Gtk2::ImageView, Glib::Interface COPYRIGHT
Copyright (C) 2007 by Jeffrey Ratcliffe. This software is licensed under the GPL-3; see Gtk2::ImageView for a full notice. perl v5.14.2 2011-11-16 Gtk2::ImageView::Tool(3pm)
All times are GMT -4. The time now is 05:13 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy