~ubuntu-branches/ubuntu/saucy/pdfresurrect/saucy-proposed

« back to all changes in this revision

Viewing changes to .pc/makefile_add_ldflags.patch/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2012-05-29 22:41:14 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120529224114-7xfrkyijzw3m5hh5
Tags: 0.11-1
* New upstream release:
  - drop all existing patches except the manpage path one

* Switch to machine-readable copyright file
* Update homepage URL

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
APP = pdfresurrect
2
 
MANPAGE = pdfresurrect.1
3
 
OBJS = main.o pdf.o
4
 
CC = @CC@
5
 
CFLAGS = @CFLAGS@ $(EXTRA_CFLAGS)
6
 
PREFIX = @prefix@
7
 
 
8
 
all: $(OBJS) $(APP)
9
 
 
10
 
$(APP): $(OBJS)
11
 
        $(CC) -o $@ $(OBJS) $(CFLAGS)
12
 
 
13
 
%.o: %.c
14
 
        $(CC) -o $@ -c $< $(CFLAGS)
15
 
 
16
 
install:
17
 
        cp $(APP) $(PREFIX)/bin/
18
 
        cp $(MANPAGE) $(PREFIX)/man/man1/
19
 
 
20
 
uninstall:
21
 
        rm $(PREFIX)/bin/$(APP)
22
 
        rm $(PREFIX)/man/man1/$(MANPAGE)
23
 
 
24
 
clean:
25
 
        rm -rfv $(OBJS) $(APP)
26
 
 
27
 
distclean: clean
28
 
        rm -f Makefile
29
 
        rm -f config.log config.status
30
 
 
31
 
.PHONY: install uninstall clean distclean