Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged makefile
0
votes
956
views
1
answer
makefile - How to create directory if needed?
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)
makefile
0
votes
666
views
1
answer
makefile - How to make GNU Make fail if a shell command assigned to a variable failed?
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)
makefile
0
votes
724
views
1
answer
makefile - Linker errors in C program: LNK2019 and LNK1120
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)
makefile
0
votes
799
views
1
answer
makefile - C++ - Compiling multiple files
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)
makefile
0
votes
663
views
1
answer
makefile - Is there a way to tell automake not to interpret part of the automakefile?
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)
makefile
0
votes
711
views
1
answer
makefile - Force make to use a more specific rule
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)
makefile
0
votes
756
views
1
answer
makefile - What's best value for make -j
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)
makefile
0
votes
597
views
1
answer
makefile - How do I process extremely long lists of files in a make recipe?
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)
makefile
0
votes
639
views
1
answer
makefile - cannot specify -o when generating multiple output files [C error]
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)
makefile
0
votes
618
views
1
answer
makefile - How to generate a source file when building using autotools
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)
makefile
0
votes
684
views
1
answer
makefile - How to generate a source file when building using autotools
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)
makefile
0
votes
551
views
1
answer
makefile aliases
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)
makefile
0
votes
678
views
1
answer
makefile - Sublime Text Build System that just "make"
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)
makefile
0
votes
1.0k
views
1
answer
makefile - Syntax error: word unexpected (expecting ")")?
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)
makefile
0
votes
675
views
1
answer
makefile unexpectedly removes target
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)
makefile
0
votes
738
views
1
answer
makefile - GNU make differences in multiline variable declarations
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)
makefile
0
votes
678
views
1
answer
makefile - Can't assign variable inside recipe
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)
makefile
0
votes
651
views
1
answer
makefile - Why am I warned that the "CMAKE_TOOLCHAIN_FILE" variable is not used by the project?
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)
makefile
0
votes
730
views
1
answer
makefile - Automatically setting jobs (-j) flag for a multicore machine?
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)
makefile
0
votes
794
views
1
answer
makefile - Qt: Run a script BEFORE make
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)
makefile
0
votes
836
views
1
answer
makefile - CMake: specifying build toolchain
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)
makefile
0
votes
667
views
1
answer
makefile - Compile Twitter bootstrap 3 docs (How to)?
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)
makefile
0
votes
752
views
1
answer
makefile - How to force an error in a gnumake file
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)
makefile
0
votes
667
views
1
answer
makefile - Flat object file directory structure output with GNU Make
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)
makefile
0
votes
761
views
1
answer
makefile - Converting all files in a folder to md using pandoc on Mac
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)
makefile
0
votes
730
views
1
answer
makefile - Making make print commands before executing when NOT using CMake
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)
makefile
0
votes
663
views
1
answer
makefile - Debugging GNU make
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)
makefile
0
votes
636
views
1
answer
makefile - List goals/targets in GNU make that contain variables in their definition
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)
makefile
Page:
1
2
3
4
5
next »
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] vite 如何实现 vue mpa ?以及 vite 文档里的一个坑
[2] The listener supports no services - 2 databases on oracle linux 7
[3] android - How get devicePixelRatio from a Controller layer? - Flutter
[4] echarts里的配置项很多都是重复的,有什么办法可以将通用的部分抽离出来方便复用吗?
[5] postgresql - Dropping Postgres schema inside plpgsql function after RETURN QUERY EXECUTE on a table within that schema
[6] 小程序scroll-view 高度不起作用怎么解决?
[7] React如何做表单渲染优化
[8] Unexpected Json when installing Firebase CLI
[9] nginx 反向代理中路径含有http://,转发后获取路径为http:/ 缺少一个斜杠
[10] Vue项目无法在IE中运行,已安装babel
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...