/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Björn Påhlsson
  • Date: 2008-07-21 23:17:19 UTC
  • mfrom: (22 mandos)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: belorn@braxen-20080721231719-6ddpx0w2s2gkeaea
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CFLAGS=-Wall -g -std=gnu99
 
1
WARN=-O -Wall -Wformat=2 -Winit-self -Wmissing-include-dirs -Wswitch-default -Wswitch-enum -Wunused-parameter -Wstrict-aliasing=2 -Wextra -Wfloat-equal -Wundef -Wshadow -Wunsafe-loop-optimizations -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wstrict-prototypes -Wold-style-definition -Wpacked -Wnested-externs -Wunreachable-code -Winline -Wvolatile-register-var 
 
2
DEBUG=-ggdb3
 
3
#COVERAGE=--coverage
 
4
LANGUAGE=-std=gnu99
 
5
 
 
6
# Do not change these two
 
7
LDFLAGS=$(COVERAGE)
 
8
CFLAGS=$(WARN) $(COVERAGE) $(DEBUG) $(LANGUAGE)
2
9
 
3
10
PROGS=plugbasedclient plugins.d/mandosclient plugins.d/passprompt
4
11