~ubuntu-branches/ubuntu/hoary/devil/hoary

« back to all changes in this revision

Viewing changes to examples/Allegro Example/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2005-01-03 19:57:42 UTC
  • Revision ID: james.westby@ubuntu.com-20050103195742-4ipkplcwygu3irv0
Tags: upstream-1.6.7
ImportĀ upstreamĀ versionĀ 1.6.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Unix Makefile
 
2
 
 
3
CC=gcc
 
4
OBJECTS=allegtest.o
 
5
LIBS=-lallegro -lIL -lILU -lILUT
 
6
 
 
7
all: DevIL_testalleg
 
8
 
 
9
DevIL_testalleg: $(OBJECTS)
 
10
        $(CC) $(OBJECTS) $(LIBS) -o DevIL_testalleg
 
11
 
 
12
allegtest.o: allegtest.c
 
13
        $(CC) -Wall -o allegtest.o -c allegtest.c
 
14
 
 
15
clean:
 
16
        rm $(OBJECTS) DevIL_testalleg