On Wed, 30 Aug 2000, you wrote:
> i just downloaded a gimp plugin that consisted of a readme file and one
> file called ps.c i figure this is source code that needs to be compiled
> but the usual ./configure etc doesn't seem to apply here, what do i do
> with this any ideas, i think the result should be just one executable
> that i then place in the appropriate directory
> 
> bascule

To compile a .c file you must use gcc.

Type gcc -o ps ps.c

The middle ps will then be the name of the executable. This can be changed to
anthing you like.

Andrew

Reply via email to