"make" Command

I always used the make command to compile source files, but I just tried it and it doesn't work. <_<

It says 'make: command not found'.

So I reinstalled the Developer Tools, and it still doesn't work.

Does anyone know whats going on, and how I can get the damn thing to work?

#50589

If it helps, here are the contents of my /usr/bin directory:

a2p                 formail             mesg                sdiff
aclocal             from                mkafmmap            sed
aclocal-1.6         fs_usage            mkbom               serialver
addftinfo           fstat               mkfifo              setregion
addr                ftp                 mklocale            sftp
aexml               genstrings          mkservdb            shar
afmtodit            getopt              mktemp              shlock
appleping           grep                mmroff              showmount
appletviewer        grep-changelog      more                sliceprint
apply               grn                 msgs                slogin
apropos             grodvi              native2ascii        smbcacls
arch                groff               nbdst               smbclient
at                  grog                neqn                smbcontrol
at_cho_prn          grolbp              newaliases          smbpasswd
atlookup            grolj4              nfsstat             smbspool
atprint             grops               nice                smbstatus
atq                 grotty              nicl                smbtar
atrm                groups              nidump              smbutil
atstatus            gunzip              nifind              soelim
automake            gzcat               nigrep              sort
automake-1.6        gzexe               niload              splain
awk                 gzip                nireport            split
b2m                 h2ph                niutil              ssh
banner              h2xs                nmblookup           ssh-add
basename            hdid                nohup               ssh-agent
bashbug             hdiutil             nroff               ssh-keygen
batch               head                nslookup            ssh-keyscan
bc                  hexdump             nsupdate            states
biff                host                ntp-wait            strings
bunzip2             hostinfo            ntpq                su
bzcat               hoststat            ocs                 sudo
bzcmp               hpftodit            od                  sum
bzdiff              htdigest            odbctest            sw_vers
bzegrep             htpasswd            open                tack
bzfgrep             id                  openssl             tail
bzgrep              idlj                osacompile          talk
bzip2               indxbib             osalang             tar
bzip2recover        info                osascript           tbl
bzless              infocmp             over                tcfix
bzmore              infokey             package             tclsh
c2ph                infotocap           pagesize            tclsh8.3
c_rehash            install             passwd              tcopy
cal                 install-info        paste               tee
calendar            iodbc-config        patch               telnet
cancel              irb                 pawd                testparm
cap_mkdb            jar                 pbcopy              testprns
captoinfo           jarsigner           pbpaste             texi2dvi
certtool            java                pcsctest            texi2html
checkgid            java-rmi.cgi        pcsctool            texindex
checknr             javac               pear                tfmtodit
chflags             javadoc             pearize             tftp
chfn                javah               perl                tic
chgrp               javap               perl5.6.0           tiff2icns
chpass              jdb                 perlbug             tiffutil
chsh                join                perlcc              time
cksum               jot                 perldoc             tnameserv
clear               kdestroy            pfbtops             toe
cmp                 kdump               php-config          top
col                 keytool             phpextdist          tops
colcrt              killall             phpize              touch
colrm               kinit               phptar              tput
column              klist               pic                 tr
comm                kpasswd             pico                troff
compress            kswitch             pl                  true
cpio                ktrace              pl2pm               tset
crontab             lam                 plutil              tsort
cscope              last                pmset               tty
cups-calibrate      lastcomm            pod2html            ud
cups-config         latency             pod2latex           ul
curl                ldapadd             pod2man             uname
curl-config         ldapcompare         pod2text            uncompress
cut                 ldapdelete          pod2usage           unexpand
dbmmanage           ldapmodify          podchecker          uniq
dc                  ldapmodrdn          podselect           units
defaults            ldappasswd          policytool          unvis
diff                ldapsearch          post-grohtml        update_prebinding
diff3               ldapwhoami          pr                  uptime
diffpp              leave               pre-grohtml         users
diffstat            less                printenv            uudecode
dig                 lessecho            printf              uuencode
dirname             lesskey             procmail            uuidgen
disable             lipo                pstruct             vacation
ditto               lkbib               purgestat           vi
dnsquery            locate              pydoc               view
dprofpp             lock                python              vis
du                  lockfile            python2.2           vm_stat
eaytest             logger              quota               w
ebrowse             login               rcs-checkin         wall
egrep               logname             rcz                 wc
emacs               look                refer               whatis
emacs-21.1          lookbib             renice              whereis
emacsclient         lp                  reset               which
enable              lpoptions           rev                 who
enscript            lppasswd            rlogin              whoami
env                 lpq                 rmic                whois
eqn                 lpr                 rmid                window
etags               lprm                rmiregistry         write
ex                  lpstat              rpcclient           xargs
expand              lsbom               rs                  yes
expn                machine             rsh                 ypcat
extcheck            mail                rsync               ypmatch
false               mailq               ruby                ypwhich
fetchmail           mailstat            ruptime             zcat
fgrep               make_printerdef     rwho                zcmp
file                make_smbcodepage    s2p                 zdiff
find                make_unicodemap     sample              zforce
find2perl           makeinfo            sc_usage            zgrep
finger              man                 scp                 zmore
fmt                 manpath             screen              znew
fold                md                  script              zprint

#50593

seems like your make gone for hollydays lol

#50598

doesnt the make file come with in the source of the program you download and run the make command in that directory?

i dunno i could be wong but with sources i download i always see a "make" file

-bolero

#50695

Originally posted by bolero@Aug 26 2003, 05:27 PM

doesnt the make file come with in the source of the program you download and run the make command in that directory?

i dunno i could be wong but with sources i download i always see a "make" file

-bolero

well, I downloaded the Dev Tools from the website (instead of installing from CD) and now it works! :)

#50711

Its part of GCC,automake, and autoconf (GNU Make Tools) and it doesnt look like GCC is installed.

type "gcc -v" and see if anything happens. If it cant find that command, install GCC.

I dont know how though, Im no mac expert.

Also, make sure you are in the directory of the Makefile.

#50718

Originally posted by contrasutra@Aug 26 2003, 07:00 PM

Its part of GCC,automake, and autoconf (GNU Make Tools) and it doesnt look like GCC is installed.

type "gcc -v" and see if anything happens. If it cant find that command, install GCC.

I dont know how though, Im no mac expert.

Also, make sure you are in the directory of the Makefile.

yup, I installed gcc and then it worked.

#50724