summaryrefslogtreecommitdiff
path: root/DevIL/examples/File Override Example/Makefile
blob: eb2001cd01437265e6fde14bf7571ed13a8a9f1f (plain)
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=iotest.o
LIBS=-lIL -lILU

all: DevIL_testio

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

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

clean:
	rm -f $(OBJECTS) DevIL_testio