~ubuntu-branches/ubuntu/precise/devil/precise

« back to all changes in this revision

Viewing changes to examples/Simple Example/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Bradley Smith
  • Date: 2009-01-17 15:01:18 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090117150118-4bwb6nmvbz4srsjl
Tags: 1.7.5-4
Actually fix CVE-2008-5262. Closes: #512122.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Unix Makefile for Simple DevIL application
2
 
 
3
 
CC=gcc
4
 
OBJECTS=simple.o
5
 
LIBS=-lIL -lILU
6
 
 
7
 
all: DevIL_test
8
 
 
9
 
DevIL_test: $(OBJECTS)
10
 
        $(CC) $(OBJECTS) $(LIBS) -o DevIL_test
11
 
 
12
 
simple.o: simple.c
13
 
        $(CC) -Wall -o simple.o -c simple.c
14
 
 
15
 
clean:
16
 
        rm -f $(OBJECTS) DevIL_test
17