/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 plugins.d/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
 
CFLAGS=-Wall -g --std=gnu99
2
 
LDFLAGS=-lgnutls -lavahi-core -lgpgme
3
 
 
4
 
PROGS=mandosclient passprompt
5
 
 
6
 
objects=mandosclient.o passprompt.o
7
 
 
8
 
all: $(PROGS)
9
 
 
10
 
mandosclient: mandosclient.o
11
 
        $(LINK.o) -lgnutls -lavahi-core -lgpgme $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
12
 
 
13
 
passprompt: passprompt.o
14
 
        $(LINK.o) $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
 
1
# See the parent directory Makefile
 
2
 
 
3
all:
 
4
        $(MAKE) -C .. all
15
5
 
16
6
.PHONY : clean
17
7
clean :
18
 
        -rm -f $(PROGS) $(objects) core
 
8
        $(MAKE) -C .. clean