make script


 
Thread Tools Search this Thread
Top Forums Programming make script
# 1  
Old 10-31-2002
make script

I need to write a make script to install a C module in a UNIX
environment.It should install the sources, build the libraries and
install them and also install the info pages on the system.
Can this script be general enough to also install on
windows, windows dll, windows help file's etc. Any directions
will be helpful.

If this is the wrong forum , excuse me
# 2  
Old 11-09-2002
Did you think that someone should just say: hello! i can make that for you? you have to do something first, and then others can help you on your way, give you some advices, tell you howto do specific things, etc.. excuse me if im wrong.
# 3  
Old 11-11-2002
help

Well I have not written a single make script and nor have I authored a windows help file.Any pointers to books or guides or online material to help me design the file, and get me started, was all I was looking for.Once I start using the system and do have problem's I will contact you ?
# 4  
Old 11-11-2002
Here is one website with an introduction to "make". There are lots more to be found with goggle. There is a book on "make" published by O'Reilly. Most unix programming texts cover "make".

This in a unix site, so you may not have a lot of luck with those windows questions.

I would not exactly use the verb "contact"; but you can certainly post any followup questions on the site.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trying to make a resync script

Good Morning, I'm trying to automate the resync process after a mirror replacement on Solaris. To avoid resyncing all the drives at once, I'm trying to use metastat for each drive to determine if the drive is still resyncing or if it is done (Okay). The following test lines seem to always show... (4 Replies)
Discussion started by: Stellaman1977
4 Replies

2. Shell Programming and Scripting

advise some script to make the changes..!!

Hi Folks, got the solution..!! (5 Replies)
Discussion started by: tuntun
5 Replies

3. Shell Programming and Scripting

Need help with a script to make makefile

How do we create a shell script that creates a makefile? what if we want to use the #include header files too? (2 Replies)
Discussion started by: sslokhan
2 Replies

4. UNIX for Dummies Questions & Answers

how to make script automated

if i have a script called test.sh file1=$(ls -l|awk '{print $9 $1}') awk ' /date_of_selling:/ { print $6 ":" &9 }' /$file1 >> data.txt if i wanna this script to run automatically every day at 8 am :D (3 Replies)
Discussion started by: teefa
3 Replies

5. Shell Programming and Scripting

how to run script? call other script? su to another user? make a cron?

Good morning. I am searching for "how-to"'s for some particular questions: 1. How to write a script in HP-UX 11. 2. How to schedule a script. 3. How to "call" scripts from the original script. 4. How to su to another user from within a script. This is the basics of what the... (15 Replies)
Discussion started by: instant000
15 Replies

6. Shell Programming and Scripting

please help me: how to make Ln in script shell

please can u help me in my homework, i want to creat a script shell for ln (symbolik link). This script will do everything that Ln do it. (1 Reply)
Discussion started by: halo03
1 Replies

7. Shell Programming and Scripting

Help to make the script simple

Hi All, I have a script which throws the output if condition matches. I run the cmd : # ldf Filesystem kbytes used avail capacity Mounted on /dev/dsk/c1t0d0s0 1984564 1375019 550009 72% / /dev/dsk/c1t0d0s3 5040814 2628410 2361996 53% /usr... (4 Replies)
Discussion started by: naw_deepak
4 Replies

8. Shell Programming and Scripting

How can I make a script to ftp over?

Hi, I have a script that ftp over the file: CFGFILE=/export/home/myuser/scripts/ftp1.cfg LOGFILE=/app/bea/logs/ LOCALPATH=/expport/home/myuser/ECNLogs/ YEAR=`date '+%Y'` MONTH=`date '+%m'` DAY=`date '+%d'` HOUR=`date '+%H'` MINUTE=`date '+%M'` LASTHOUR=$((HOUR-1)) echo $LASTHOUR ... (4 Replies)
Discussion started by: mehrdad68
4 Replies

9. Shell Programming and Scripting

make directory script

Hi, I try to write a script to create a new directory. #!/bin/bash echo "Please enter folder name (6 characters only) :" read foldername mkdir /home/user/$foldername $foldername >> /home/list/list.txt My question/situation: 1) how to ensure the folder name MUST BE 6 characters... (0 Replies)
Discussion started by: malaysoul
0 Replies

10. Shell Programming and Scripting

Help make script much easier

Is there any method to realise this in one command? Thanks in advance (2 Replies)
Discussion started by: GCTEII
2 Replies
Login or Register to Ask a Question