Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] make coomand in Batch file

Status
Not open for further replies.

rajbabu

Junior Member level 3
Joined
Apr 2, 2010
Messages
29
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Location
indo
Activity points
1,459
what is meaning of in batch file

Code:
%MAKEDIR%\cmd\make %1 %2 %3 %4 %5 %6 %7 %8 %9

What are this numbers 1,2, 3 etc.
 
Last edited by a moderator:

those are the commandline parameters for the 'make' program in the batch file.
 

what is meaning of in batch file

%MAKEDIR%\cmd\make %1 %2 %3 %4 %5 %6 %7 %8 %9

What are this numbers 1,2, 3 etc.


using batch parameters example :

Code:
mybatch.bat C:\folder1 D:\folder2

C:\folder1 will be %1, D:\folder2 will be %2


in your case you probebly have a makefile file.
in the makefile you can see how this parameters are used.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top