python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Automake LibSocketCan
I am using automake to build my project. My project uses pthread and libsocketcan. I have installed libsocketcan with the command
sudo apt-get install libsocketcan-dev
In eclpise I have added linker ...
Michael
Votes: 0
Answers: 1
Automake makefile doesn't link properly
I am building a project with Automake and I want to link GLFW and GLEW to the project. My Makefile.am looks like this:
AUTOMAKE_OPTIONS = foreign subdir-objects
bin_PROGRAMS = game
game_SOURCES = src/...
woojinson
Votes: 0
Answers: 1
Pattern syntax %.3: man/libfoo.man in Automake with different base name
I wrote a library libfoo providing functions bar and baz.
I want the user to be able to find the same man-page (from mans/libfoo.man) when they call man libfoo, man bar and man baz (Similar to man fpr...
Joel
Votes: 0
Answers: 1
How to unconditionally recompile with automake's Makefiles
I have a project using autoconf/automake. Sometimes I want to remake part of it even though make (correctly) believes all dependencies are up-to-date. For other projects I can use make -W some-file.c...
Peter Hull
Votes: 0
Answers: 0