Help with make, how to run it...!


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Help with make, how to run it...!
# 1  
Old 12-03-2010
Help with make, how to run it...!

I have windows xp sp3, and i have a make file called Makefile, (no extension), and i don't know how to run it. Also it has the commands (underline means it has something there)

COMPILE_JAVA = javac -source 1.4
RUN_JAVA = java -enableassertions

test: _______________
____________
clean: :
________________
%.class : %.java
@${COMPILE_JAVA} $<


What do these commands do?
# 2  
Old 12-04-2010
The Makefile is an input file for the make command. Like:
Code:
make Makefile

A simple explanation of the syntax:
Makefile Tutorial
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

help to make script run recursively

I have this little bash script I use to transcode mkv files using handbrake. #!/bin/bash sourcedir="/media/raid10/video/to_be_encoded_series" destdir="/media/raid10/video/series" cd "$sourcedir" for i in *.mkv; do HandBrakeCLI -i "$i" -o "$destdir/${i%.*}.mkv" -e x264 -q 20.0 -E copy -B... (4 Replies)
Discussion started by: barrydocks
4 Replies

2. Shell Programming and Scripting

Make script that run with argument if not run from configuration file argument

Hello, Is there any method thorugh which script can take argument if pass otherwise if argument doesn't pass then it takes the argument from the configuration file i.e I am workiing on a script which will run through crontab and the script will chekout the code ,zip and copy to the... (3 Replies)
Discussion started by: rohit22hamirpur
3 Replies

3. Shell Programming and Scripting

how we can make shell script not to run

Hi,shell script is scheduled from maestro and we want mastero should not run shell script so can we edit the shell script so that it should run.ThanksPrakash (5 Replies)
Discussion started by: prakashdba2010
5 Replies

4. Shell Programming and Scripting

How to make this run in multiple threads

Hi, I have a list of URLs in a csv file which I'm checking for page status. It just prints the URL and the status as output. This works perfectly fine. I'm looking to run this in multiple threads to make this process faster. I'm pretty new to Perl and I managed to complete this. It would be... (9 Replies)
Discussion started by: kzenthil
9 Replies

5. SuSE

Suse 11 - How to run 'make'

I just installed gcc using Yast. When I run 'make', the command is not found. What should I do? #which gcc /usr/bin/gcc (2 Replies)
Discussion started by: fld2007
2 Replies

6. Programming

how to make application run fast

I do some try on one application to know how to fasten a application root@localhost:/tmpfs> ./pbzip2 -p2 -f -k libc5.cvs.tar Average Time:22.578 Min Time:22.542 Max Time:22.594 First: I need to say my setting: using tmpfs: mount -t tmpfs -o size=200m,nr_inodes=10k,mode=777 tmpfs /tmpfs ... (2 Replies)
Discussion started by: yanglei_fage
2 Replies

7. Shell Programming and Scripting

run and make an executable file

as i said before i'm a beginner in shell programming and i have two questions: how to run an executable file in shell scripts like for example let's say the file called "prog.exe", what's the shell command to run this file? also how can i make the shell file an executable file (if it is... (5 Replies)
Discussion started by: _-_shadow_-_
5 Replies

8. Shell Programming and Scripting

Can anyone make this script run faster?

One of our servers runs Solaris 8 and does not have "ls -lh" as a valid command. I wrote the following script to make the ls output easier to read and emulate "ls -lh" functionality. The script works, but it is slow when executed on a directory that contains a large number of files. Can anyone make... (10 Replies)
Discussion started by: shew01
10 Replies

9. Shell Programming and Scripting

Make program only run by root

Hi all, i hope i got this in the right place, what i am trying to do is make a program only run by root, ie for instance user fred is logged in and uses firefox, what id like to do is change that so that when fred wants to use firefox he will be asked to enter root password before he is allowed to... (14 Replies)
Discussion started by: dave123
14 Replies

10. UNIX for Dummies Questions & Answers

how do i make this run 3com

i got a 3com hub tr modle i can't talk to it how do i do this to set ip up so i can talk to it the address that was on it is 170.104.81.54 can any body help me or tell what this hub is used for and i all so have over 1000 madge nic cards 100/16/4 if any body need them will sell and got a... (2 Replies)
Discussion started by: amicrawler2000
2 Replies
Login or Register to Ask a Question