On 7/29/07, Uwe Thiem <[EMAIL PROTECTED]> wrote:
> On 28 July 2007, Kent Fredric wrote:
>
> > try a plain old bash script and see if that works, and try this and
> > see if it works:
> >
> > cat >> testrun.c
> > #include <stdio.h>
> > int main(int argc, int* argv)
> > {
> >   printf("helloworld");
> > }
> > ( press ctrl+d here )
> >
> > make testrun
>
> Without writing a Makefile, make won't build the program. ;-)

funny, it did for me :P

just make testrun does "ok,.. testrun = target, what makes testrun?..
*looks around* ah... heres a testrun.c, that aught to do it :D .... "


$ls -l testrun.c Makefile
ls: cannot access Makefile: No such file or directory
-rw-r--r-- 1 devious users 77 2007-07-29 00:24 testrun.c

$make testrun
cc     testrun.c   -o testrun

$ ./testrun
helloworld


> You better try this:
>
> gcc -o testrun testrun.c
>
> Uwe
>
> >
> > ./testrun
> >
> > if that fails to do ./testrun, then i figgure the FS your on isn't
> > execable. sorry. ^^
> >
> >
> >
> >
> > --
> > Kent
> > ruby -e '[1, 2, 4, 7, 0, 9, 5, 8, 3, 10, 11, 6, 12, 13].each{|x|
> > print "enNOSPicAMreil [EMAIL PROTECTED]"[(2*x)..(2*x+1)]}'
>
>
>
> --
> Jethro Tull: Maybe, I am not done yet!
> --
> [EMAIL PROTECTED] mailing list
>
>


-- 
Kent
ruby -e '[1, 2, 4, 7, 0, 9, 5, 8, 3, 10, 11, 6, 12, 13].each{|x|
print "enNOSPicAMreil [EMAIL PROTECTED]"[(2*x)..(2*x+1)]}'
-- 
[EMAIL PROTECTED] mailing list

Reply via email to