Entry 3160

Sample Makefile header

   

Submitted by dflemstr on Feb. 9, 2010 at 4:18 p.m.
Language: Makefile. Code size: 844 bytes.

CC            = gcc
CXX           = g++
DEFINES       = -DDEFINE_A_VARIABLE_IN_THE_SOURCE -DNO_FLOATS -DUSE_STDSTRING
CFLAGS        = -m64 -pipe -O2 -Wall -W $(DEFINES)
CXXFLAGS      = -m64 -pipe -O2 -Wall -W $(DEFINES)
INCPATH       = -I/usr/include -I../pandora-libraries/pnd/include -I.
LINK          = g++
LFLAGS        = -m64 -Wl,-O1
LIBS          = -L/usr/lib -lpthread 
AR            = ar cqs
RANLIB        = 
TAR           = tar -cf
COMPRESS      = gzip -9f
COPY          = cp -f
SED           = sed
COPY_FILE     = $(COPY)
COPY_DIR      = $(COPY) -r
STRIP         = strip
INSTALL_FILE  = install -m 644 -p
INSTALL_DIR   = $(COPY_DIR)
INSTALL_PROGRAM = install -m 755 -p
DEL_FILE      = rm -f
SYMLINK       = ln -f -s
DEL_DIR       = rmdir
MOVE          = mv -f
CHK_DIR_EXISTS= test -d
MKDIR         = mkdir -p

This snippet took 0.01 seconds to highlight.

Back to the Entry List or Home.

Delete this entry (admin only).