~noskcaj/ubuntu/trusty/darktable/merge

« back to all changes in this revision

Viewing changes to tools/basecurve/Makefile

  • Committer: Package Import Robot
  • Author(s): Bhavani Shankar
  • Date: 2014-01-01 14:05:04 UTC
  • mfrom: (8.1.16 sid)
  • Revision ID: package-import@ubuntu.com-20140101140504-9y7ll3iosjg1183v
Tags: 1.4-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Build against libgphoto2-6
* Convert upstream translations to a patch to stop debuild complaining.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PROGS = basecurve
 
2
 
 
3
CFLAGS = -g -std=c99 -Wall
 
4
 
 
5
all: $(PROGS)
 
6
 
 
7
clean:
 
8
        rm -f $(PROGS)
 
9
 
 
10
basecurve: basecurve.c
 
11
        $(CC) $(CFLAGS) basecurve.c -lm -o $@
 
12
 
 
13
.PHONY: all clean