~ubuntu-branches/ubuntu/precise/judy/precise

« back to all changes in this revision

Viewing changes to examples/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Troy Heber
  • Date: 2007-05-21 15:07:50 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070521150750-khuc7e3iblyvi0a9
Tags: 1.0.5-1
* Fixed alignment issue, (Closes: #401124)
* Update packaging, policy, debhelper, etc.
* Removed old BIT cruft from rules
* Upstream has propper distclean target (Closes: #424425)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CCFLAGS += -ggdb
 
2
LIBS = -lJudy
 
3
 
 
4
all: Judy1DupCheck Judy1OpCheck
 
5
 
 
6
Judy1DupCheck: Judy1Dup.c Judy1DupCheck.c
 
7
        $(CC) $(CCFLAGS) -o $@ $^ $(LIBS)
 
8
 
 
9
Judy1OpCheck: Judy1Op.c Judy1OpCheck.c
 
10
        $(CC) $(CCFLAGS) -o $@ $^ $(LIBS)
 
11
 
 
12
clean:
 
13
        rm -f Judy1DupCheck Judy1OpCheck *.o