/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 03:58:36 UTC
  • mfrom: (17 mandos)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: belorn@braxen-20080721035836-v7220bmolr608r61
Added getopt_long support for mandosclient and passprompt
Added support for --interface for mandosclient
Added support for --prefix for passprompt

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
CFLAGS=-Wall -g -std=gnu99
2
 
LDFLAGS=-lgnutls
3
 
 
4
 
all: plugbasedclient
5
 
 
 
2
 
 
3
PROGS=plugbasedclient plugins.d/mandosclient plugins.d/passprompt
 
4
 
 
5
objects=$(shell for p in $(PROGS); do echo $${p}.o; done)
 
6
 
 
7
all: $(PROGS)
 
8
 
 
9
plugbasedclient: plugbasedclient.o
 
10
        $(LINK.o) -lgnutls $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
 
11
 
 
12
plugins.d/mandosclient: plugins.d/mandosclient.o
 
13
        $(LINK.o) -lgnutls -lavahi-core -lgpgme $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
 
14
 
 
15
plugins.d/passprompt: plugins.d/passprompt.o
 
16
        $(LINK.o) $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
 
17
 
 
18
.PHONY : clean
6
19
clean:
7
 
        rm -f plugbasedclient
 
20
        -rm -f $(PROGS) $(objects) core