1
vote
1answer
31 views

Using makefile variables in shell script

I've a makefile where all the environment variables are defined (top directory) and I want to use some of these variables in a shell script present at innermost level. How should I access those ...
0
votes
2answers
37 views

“Argument list too long” in display all list elements

I would like to dump the content in a list, but I have no idea how to solve this problem now. When I try to display all elements in the list, shell shows: arguments list too long in Makefile: ...
0
votes
1answer
24 views

GNU Make: sed doesn't work when piped inside of $(shell)

Here is my experimental Makefile. .SECONDEXPANSION: ~/hello.txt: $(shell echo '$$(@D)/')$(shell echo '$$(@F)' | sed -e 's/hello/bye/') echo "$^" Somehow the sed command doesn't work, and Make ...
0
votes
1answer
36 views

-@ precedes shell script, what does it mean

please see the following code in busybox makefile scripts/config/conf: scripts/config/Makefile $(MAKE) -C scripts/config conf -@if [ ! -f .config ] ; then \ cp $(CONFIG_DEFCONFIG) ...
0
votes
1answer
27 views

Tab space following \ when using mkdir causing wrong directory created

When I use the below script, a [tab] causes mkdir to combine multiple calls together: #Ends with a \[TAB] which screws up bill SubTestCase := \ zack \ ...
0
votes
2answers
42 views

'tee' in makefile, can we copy stderr as well?

I hope to record the result of stderr & stdout to different files, while watching both outputs from the terminal. So I use tee, and found a solution in this page. But the sad thing is, it can't ...
1
vote
1answer
96 views

reading variable value declared in script.sh in Makefile

I run makefile to generate an image file for a target device. After I burn the image into the target device during one of the operation funtion1.sh calls script.sh where my VAR is declared. I want ...
1
vote
1answer
107 views

What does (set PATH=…;%PATH:)=^)%) mean in a Windows shell script, and how can I overcome failure of this line in the context of a Qt5 nmake build?

In the context of an obstacle-ridden process of attempting to build Qt5 (32-bit) with VS 2012, I have run into yet another build error. It is: (set ...
0
votes
2answers
75 views

How to use eval in Makefile

I am learning makefile. I have problem in understanding usage of eval in makefile. This is my Makefile: testt: @R=5 $(eval $(echo $R)) when I run make testt, nothing is displayed. Could ...
0
votes
1answer
60 views

Makefile Substituting for loop variables to functions

I'm not sure what the best way to do this, and some pointers in this regard would be helpful Code: #Else where in different file and included in this makefile i have LIBRARY_LIST := ...
0
votes
1answer
75 views

Compiling multiple programs with Makefile

I have to compile three separate program using 4 different cpp files and including one cuda file. Files are: final_serial.cpp final_mpi.cpp final_mpicuda.cpp and final_cuda.cu The ...
2
votes
2answers
65 views

Shell Script: error during comparison (Linux)

I am passing an argument into a shell script through make using: smktestrun: smktest @../projects/test.sh $(TESTARGS) Then call the Makefile with $ make smktestrun TESTARGS="-abc" And ...
0
votes
2answers
68 views

Makefile: Passing command line arguments to file inside Makefile

Inside my Makfile I have the following, smktestrun: smktest @../projects/test.sh And I call this using: Make smktestrun But sometimes I need to pass an parameter/argument along with this ...
1
vote
1answer
102 views

recursive clean in a Makefile

I'm trying to create a Makefile which can build/clean recursively when it's called. I have the build working, but I'm getting errors with the clean command. My directory structure is something like: ...
1
vote
2answers
89 views

How to pass shell variable to autogen.sh script

I calling a autogen.sh script from other Makefile, and this Makefile is called from a shell script, If I set a variable VAR on this more external script I can use-it normally inside this Makefile, ...
0
votes
1answer
94 views

How do I use makefile to test my shell implementation?

Here is my current makefile, which does not run test correctly: shell2: shell2.o shell2.o: shell2.c clean: rm -f *.o test: shell2 ./shell2 pwd ./shell2 ...
1
vote
1answer
133 views

how do I use pipes in a makefile shell command?

I have the following code snippet in a Makefile which always fails unless I remove the references to sed & grep below. TAB=$(shell printf "\t") all: abstract.tsv $(shell cut -d "${TAB}" -f ...
1
vote
1answer
58 views

Have GNU make re-evaluate what is returned by $(shell …)

here is a snippet from my makefile: main_DEPS = $(TARGETS_$(d)/classes/player) $(TARGETS_$(d)/classes/monster) It sets main_DEPS to the expanded versions of the other two variables. This works as ...
0
votes
2answers
89 views

Creating an alias for my script thru Makefile

I was wondering if is there any way to set up an alias on user's ~/.bash_aliases thru a Makefile. Let's say I have a bash script called foo.sh which prints what you've passed to it. E.g.: Input sh ...
1
vote
2answers
92 views

Use $RANDOM in a makefile

I am making a makefile to rename files with a random number in it (I am a newbie in shell script). I don't understand why, but when I run the file $rand is given the value 'ANDOM'. When I run this ...
1
vote
1answer
54 views

How to run a specific command when makefile has a error?

I have a makefile that calls ... @lessc less/mything.less > style.uncompressed.css can i run a command like "beep" or "paplay ..." when the lessc compiler has errors? If how do i do it? I am ...
0
votes
1answer
51 views

what mean by the symbol ` or \` in this makefile statement : export SRVHOME=`readlink -f \`dirname $0\`/../`

export SRVHOME=`readlink -f \`dirname $0\`/../` I know it exports a directory variable . but what means by the symbol "\`" or "`" surround the command?
1
vote
1answer
178 views

echo -e option in ubuntu doesn't work

My colleague use Ubuntu and I use openSUSE, we compiled same source code using same makefile, my environment works well, but my colleague can't, always output the can't recognized -e option. We check ...
1
vote
3answers
224 views

Variables from makefile to bash

I have next situation: source of test.mk: test_var := test_me source of test.sh: $test_var = some method that get test_var from .mk if [ "$test_var" = "test_me" ] ; then do ...
1
vote
1answer
158 views

Reading a file inside makefile

I want to read a file called metafile inside a makefile. metafile looks something like this: file1 file2 file3 I need to read this metafile inside my makefile line by line and check if the ...
0
votes
1answer
113 views

Unix shell bash script unable to put an echo debug statement

I have the following make file, which i think is a shell script. I am trying to loop through FILE_DIR to perform some operations. However, i feel that the implementation isn't working as expected. ...
0
votes
1answer
158 views

calling a make file (located in other directory) from a shell script

I am a newbie at programming, and am trying to do this: I want to call a make (make file exists in some other directory, abs path can be used) from a shell script located in a different directory. ...
2
votes
3answers
103 views

What is a shar file? [closed]

Reading the make's manual page: `shar' Create a shell archive (shar file) of the source files. What is a shar?
1
vote
1answer
307 views

Pass arguments in shell-script from a makefile and get back the results?

I have a makefile, from where I'd like to call a shell-script, which does something and return back the result to makefile. Detailed description :- From my make-file, I call the shell-script as ...
2
votes
2answers
246 views

What does the following Makefile/shell/sed line do?

This line is straight from FullCalendar (a jQuery plugin) Makefile. I can't make sense of it, in particular the part with the dollar sign. I don't know whether make, the shell or sed "processes" it. ...
0
votes
1answer
91 views

Makefile/Shell: Append text to a name and use that name as a variable

What I want is: Given an array of names, e.g., dependency1, dependency2, .., dependencyN: Append "_DEP_DIR" to each name, to form, e.g., dependency1_DEP_DIR, .., dependencyN_DEP_DIR. (XXX_DEP_DIR ...
0
votes
2answers
58 views

Use of $$ in the make file?

I have the following structure home |-- Makefile |-- H1 | |-- Makefile | `-- h1.c |-- H2 | |-- Makefile | `-- h2.c |-- main.c H1/Makefile h1.o:h1.c gcc -c h1.c H2/Makefile ...
0
votes
1answer
66 views

Calling `command -v find` from GNU Makefile

I use a shell (bash, but I need portability) and a GNU Makefile. I have this code: check_commands: command -v find >/dev/null command -v asdf >/dev/null As supposed, the first ...
0
votes
0answers
81 views

Makefile for both compiled and shellscript

sorry for the simplicity of my question but I am kind of a newbie about Makefiles. I have a shellscript source and a compiled one (i.e. Fortran program) which is called in a for cycle in the shscript. ...
2
votes
1answer
319 views

Using curly brackets for variable expansion in makefile doesn't work

When I run below command on shell, it works properly. but if I write it in a Makefile and call it with "make" command it doesn't work. cp wpa_{cli,supplicant,passphrase,event} /usr/local/bin/ ...
1
vote
4answers
285 views

How to define global shell functions in a Makefile?

I want to define a shell function #!/bin/sh test () { do_some_complicated_tests $1 $2; if something; then build_thisway $1 $2; else build_otherway $1 $2; fi } in such a way that I ...
0
votes
1answer
49 views

Makefile command conflicts with folder name

I'm having a small problem with my Makefile, where it conflicts with a folder. First of all I'm using the Makefile to run several shell commands Per example: Makefile contents: test: ...
2
votes
2answers
540 views

Running multiple shell commands in makefile

I would like to run something like: grep TEXT file.txt If TEXT exists in file.txt then add a compilation flag. Here is the pseudocode- if (grep TEXT file.txt == line exists) CFLAGS += -DFOO ...
0
votes
1answer
125 views

Understanding syntax of conditional statements in shell script

I do see certain statements in a pre-written Makefile target, where they are invoking the shell to execute certain commands. Following is the syntax of the one which I am puzzled about. [ -z ...
2
votes
1answer
176 views

Can I assign a system variable within makefile run from script?

I have a bash script which iterates through different sub-projects directories and executes make target there. Each of that makefile can have its own variable e.g. $(MY_FILTERS) assigned withing the ...
1
vote
2answers
310 views

How to get the file size on Unix in a Makefile?

I would like to implement this as a Makefile task: # step 1: curl -u username:password -X POST \ -d '{"name": "new_file.jpg","size": 114034,"description": "Latest release","content_type": ...
-4
votes
2answers
78 views

What does the -exec option to 'find' do?

I am new to Makefile. I was going through an existing makefile and couldn't understand what it does. The line is as below. find $(RELEASE_DIR) -depth -name "*CVS" -exec rm -rf {} \; find command ...
4
votes
1answer
953 views

Redirecting stdout and stderr inside a Makefile rule

I want to redirect the output of a script to a different program. Something I would normally do using these two forms: python test.py 2>&1 | pyrg python test.py |& pyrg My problem is ...
2
votes
2answers
119 views

copy multiple files to null directory

I want to check if source file exist, so I assign TO_DIR=/dev/null in my gnu makefile. APPS=a b c d install: cp $(APPS) $(TO_DIR) for normal case, I'll run 'TO_DIR=~/bin make install' for test ...
0
votes
1answer
209 views

Makefile shell grep

$(BUILDDIR)/%.check: $(SRCDIR)/%.c $(eval pragma := $(shell grep "pragma" $< )) @echo $<: $(pragma) $(pragma) variable is always a null string, even for files containing ...
2
votes
1answer
501 views

Building Bochs using CygWin: “no rule to make target”

I'm building Bochs from source using CygWin. What I've already done: Changing the value of my $PATH variable in order to use CygWin's find instead of Windows' find: ...
0
votes
1answer
230 views

Listen to background process's exit code in MakeFile

Solved I need to spawn background processes in MakeFile and also consider their exit codes. Scenario: several processes are spawned in background. MakeFile continue evaluation (and do not want to ...
0
votes
3answers
416 views

Terminate makefile command when subcommand throws?

I've got the following Makefile: #runs the working directory unit tests test: @NODE_ENV=test; \ mocha --ignore-leaks $(shell find ./test -name \*test.js); #deploys working directory ...
1
vote
2answers
338 views

Shell parameter expansion: how can I get the file name without the directory part?

I was writing a makefile and suppose I have the following; FILES = file1.py \ folder1/file2.py \ folder2/file3.py And I have the following for loop: -@for file in $(FILES); do \ ...
1
vote
2answers
209 views

How to generate targets in a Makefile by iterating over a list?

CODE: LIST=0 1 2 3 4 5 PREFIX=rambo # some looping logic to interate over LIST EXPECTED RESULT: rambo0: sh rambo_script0.sh rambo1: sh rambo_script1.sh Since my LIST has 6 elements, 6 ...

1 2