Category "makefile"

How to run a c program in ubuntu 12.04

Hello i am new to ubuntu. I want to run a c program in ubuntu.On the terminal i typed "make ex1.c" (my file name is ex1) and the after pressing enter button , t

functions in makefiles?

I have a slew of makefile targets that do the same thing: ${SOME_FILE}: ${FILES} | ${DIST_DIR} @@cat ${FILES} | \ sed 's/@D

make aborting because zip exits with status 12

make is halting and reporting an error code of 12 after attempting to zip -u some files. The error code 12 is actually an exit status from zip which indicates

make fails to build squid with openssl (deprecated functions used)

I'm trying to build squid with openssl, but fail because make threats warnings as errors An example: gadgets.h -> error 'void RSA_free(RSA*)' is deprecated;

bash completion of makefile target

Suppose I have a simple makefile like: hello: echo "hello world" bye: echo "bye bye" Then in bash I want something like: make h < tab > so