Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged makefile

0 votes
884 views
1 answer
    I'm trying to use makefile, my problem is that I have a directory, with an src directory and a Makefile. I also ... C files. So how to do this? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
638 views
1 answer
    I have a Make variable: PASSWORD:=$(shell vault read -field=password test/password) If vault is not ... execution if the expression fails? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
686 views
1 answer
    Following my previous question here : Compile a C library with Visual Studio 2010 ; I have a C project, with a ... created return 0; } } #endif See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
746 views
1 answer
    I was learning about the makefile tool which seems very powerful, and was trying to figure out how to make it ... directory g++: no input files See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
608 views
1 answer
    Is there a way to tell automake not to interpret part of the Makefile.am? Specifically, I am trying to ... "" SOMEVAR="default_value" endif See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
653 views
1 answer
    I can't seem to force make to use a more specific rule. I'm working with version 3.81, which is supposed to ... it first doesn't seem to help. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
702 views
1 answer
    What's the best value of -j switch? I usually set this up to the number of CPU/Cores available. Thanks. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
564 views
1 answer
    Because GNU make allows variables to be as large as memory allows, it has no problem building massive ... to generate those commands? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
604 views
1 answer
    I have a question about make file using gcc, below is my code in makefile. I got cannot specify -o when generating ... : *** [bwtsearch] Error 1 See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
573 views
1 answer
    With Make, I do something like generated.c: input.txt generator ./generator input.txt > generated.c How would I get ... would also be a bonus). See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
620 views
1 answer
    With Make, I do something like generated.c: input.txt generator ./generator input.txt > generated.c How would I get ... would also be a bonus). See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
494 views
1 answer
    Please explain $@ $^ $ in the makefile below LIBS = -lkernel32 -luser32 -lgdi32 -lopengl32 CFLAGS = -Wall # (This ... $@ $^ $(CFLAGS) $(LIBS) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
624 views
1 answer
    I'm trying to build my project by simple executing make in the top directory. However, when I do, I get the ... . What do I have to do? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
980 views
1 answer
    PLATFORM = x86 CUD = cuda X86 = x86 PAN = panda ARM = arm app: ifeq($(PLATFORM),$(CUD)) CC = dum3 endif ifeq ... (expecting ")") ? Plzz.. Help.. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
629 views
1 answer
    A minimal example: %.txt: foo.log # pass %.log: # pass Run: $ make a.txt --dry-run # pass # pass rm foo. ... foo.log? How can I get rid of it? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
710 views
1 answer
    I read this question, and I was surprised it wasn't working: Why GNU Make canned recipe doesn't work? So I tried ... I'm using GNU Make 3.81. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
615 views
1 answer
    How do I make this work? It errors out with "make: somevariable: Command not found" sometarget: somevariable = ... (CXXFLAGS) ./bn.sh endif See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
620 views
1 answer
    When I build some third-party code, I am seeing the following warning from CMake: CMake Warning: Manually- ... that the warning goes away? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
692 views
1 answer
    I have a Makefile on a machine that has a ton of cores in it, but I always seem to forget to write ... jobs in parallel on this machine? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
727 views
1 answer
    I have a script, runScript.sh, that I would like to have run (to setup some environment variables and such) BEFORE making ... 4.8.4 & qmake 2.03 See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
776 views
1 answer
    Very new to CMake, and so far I'm finding it to be extremely helpful. I have a set of custom libraries that ... or in the CMakeLists.txt file? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
617 views
1 answer
    I'm trying to compile bootstrap 3. I have the repo cloned on my local. I run make in the bootstrap ... t see the compiled docs anywhere? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
674 views
1 answer
    I want to detect a condition in my makefile where a tool is the wrong version and force the make to fail with ... install v1.6") endif Thanks. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
621 views
1 answer
    I have a C++ small project using GNU Make. I'd like to be able to turn the following source files: src ... like fairly reasonable thing to do. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
709 views
1 answer
    I am trying to convert an entire directory from html into markdown. The directory tree is quite tall, so there are ... it comes to GNU make).) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
700 views
1 answer
    I see that this is the same question as Making cmake print commands before executing But that answer doesn't work ... for x86_64-pc-linux-gnu See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
610 views
1 answer
    Is there a command line way in make to find out which of the prerequisites of a target is not updated? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
596 views
1 answer
    I have a fairly large makefile that creates a number of targets on the fly by computing names from variables ... function for my shell. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...