File: Makefile

package info (click to toggle)
devil 1.6.8-rc2-3%2Blenny1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 10,004 kB
  • ctags: 4,659
  • sloc: ansic: 37,357; sh: 13,641; cpp: 7,193; pascal: 792; makefile: 348; python: 47
file content (17 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Unix Makefile for Simple DevIL application

CC=gcc
OBJECTS=readtest.o
LIBS=-lIL -lILU

all: DevIL_testread

DevIL_testread: $(OBJECTS)
	$(CC) $(OBJECTS) $(LIBS) -o DevIL_testread

readtest.o: readtest.c
	$(CC) -Wall -o readtest.o -c readtest.c

clean:
	rm -f $(OBJECTS) DevIL_testread