|
Is there a way that I can make
$ make
default to:
$ make -j 8
?
Thanks!
Started by anon on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Alias make="make -j 8" , assumin bash shell
If you are using the command line you can do:
alias make='make -j 8'
This will be temporary, to make it permanent you need to add it to .bashrc
Read here: http://www.linfo....
|
|
This is something that has always bugged me. It seems like I always see build instructions for building and then installing something saying to do this:
make sudo make install
Is there really any reason to call make ? Doesn't sudo make install implicitly...
Started by Jason Baker on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
make install - this reads the makefile for the target install directory....
It builds the program and the end result is your binaries .
make - this reads the makefile for instructions on how to compile the sources.
The 2 commands do different things.
|
|
Just assume we are installing some libraries from its source distributed by the way GNU promoted. When using "./configure --prefix" to specify where to install.
(1) does Make generate the binaries under the current directory? Does Make install then copies...
Started by Tim on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I think the makefile will be able to handle impressed with the makefiles I've used)
... .
As for the rest, you may find a make clean which will tidy up the files created by the initial make .
The answer to your first question is probably yes.
|
Ask your Facebook Friends
|
Do I have to run make and make install each time I change a .pm file for Perl? I'm doing a ton of testing and this is becoming cumbersome.
Started by Phill Pafford on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Presumably you're editing a lib isn't pure-perl and requires....
I use, "make test" runs a "make" if any files have been modified, so when doing intra-module development "make test" is the only command you need until you've finished.
|
|
When i download a fresh copy from our SVN, make then run my program, Qt tells me that one of my SLOTS doesn't work but with a handy-dandy make clean then make, it seems to solve the problem. i continue to make changes in the code on my PC and that message...
Started by TheFuzz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Does a make includes fix the problem too?
What all gets deleted when you do a make stages in your version control....
My guess? There's a file in your repository that's removed by make clean but not recreated by make with reality.
|
|
Hey guys, i dont know if anyone out there has heard of Marlena the youtuber that goes under the name of MAKEUPGEEK ? Well shes got her own line out called MUD (make up designory) but ive heard it called MUG (make up geek) make up? Has anyone tried this...
Started by princessxx on
, 12 posts
by 8 people.
Answer Snippets (Read the full thread at purseblog):
Marlena doesn't have anything to do.
Make Up Designory is a separate company.
Make Up Designory is it's own but never have tried.
It would have to be cheaper than, say, NYX for me to try it .
Brand.
|
|
(disclaimer: I am used to scons ... I am somewhat unexperienced with make)
Context: I am using Eclipse CDT which generates makefiles.
Let's say I have a project directory 'lib' and 2 build configurations 'Debug' and 'Release'. Eclipse CDT gracefully generates...
Started by jldupont on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Maybe something like
release debug: $(MAKE) -C $@
You) ; do $(MAKE) -C $$b $@ ; done $....
I'd guess you want the latter.
You want to either
include $(BUILD)/Makefile
or
$(MAKE) -C $(BUILD) $@
or some such.
Depends on what is "calls".
|
|
I have the simplest of makefiles:
threads: gcc threads.c -o threads
but I get the error:
'make: Fatal error: Don't know how to make target'
Any ideas what I am doing wrong? It's probably something simple - I made the makefile in emacs on the system which...
Started by naspinski on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Does make threads work? ....
Edit:
Did you mistype the make as you got the error 'ake: Fatal error....', something is wrong there.
Do you have spaces instead of a tab on the second line there? Most common basic make mistake, I'd say.
|
|
I am just wondering how companies make money by offering free RIA application development platforms.They invested lot of money & human resources to create & improve those platforms. Of course no commercial company does that for free, there will be some...
Started by funwithcoding on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
MS and Adobe will make money off of the Tools used to create the proprietary.
A similar synergy exists for Adobe Internet Applications on.
Them make more money off of products like Windows and Office.
|
|
Hi all.
1) We have a need for Makefiles to build C++ on both z/OS USS and a Linux platform. Is it advisable to use gnu make on z/OS USS in order to keep our makefiles common ?
2) If the Makefiles are common, then some steps in the Makefiles, would still...
Started by Mark Underwood on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Thing: ifeq($(SYSTEM), Linux) shell-command-do-something endif # If the conditional....
Disclaimers:
I know nothing about z/OS USS, I know a lot about Make (and when you're holding with a tab, # it's a Make statement and follows Make syntax.
|