RE: cocoa-dev digest, Vol 2 #1797 - 16 msgs
RE: cocoa-dev digest, Vol 2 #1797 - 16 msgs
- Subject: RE: cocoa-dev digest, Vol 2 #1797 - 16 msgs
- From: "Jake A. Repp" <email@hidden>
- Date: Wed, 15 Jan 2003 10:17:46 -0800
- Thread-topic: cocoa-dev digest, Vol 2 #1797 - 16 msgs
Also try this:
Create two files:
---------- mylittleprogram.c -----------
#include <stdio.h>
int main(int argc, char **argv)
{
printf ("hello\n");
}
------------- Makefile -------------
mylittleprogram: mylittleprogram.c
gcc -o mylittleprogram mylittleprogram.c
Note that has to be a tab before 'gcc'
Now just type 'make' in that directory and then type ./mylittleprogram
-jake
http://jrepp.com/cocoabb
-----Original Message-----
From: Richard [
mailto:email@hidden]
Sent: Tuesday, January 14, 2003 10:15 PM
To: email@hidden
Subject: Re: cocoa-dev digest, Vol 2 #1797 - 16 msgs
>
First I would like to for posting the first part of this question
on
>
an unrelated thread through no fault but my own.
>
>
Second, is it possible to built a windows command line app (i.e. a
>
.exe) on my mac? A friend needs a little prog, and I'd rather not have
>
to install a compiler on his machine etc.... just for this little prog.
>
>
CodeWarrior does this.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.