15 lines
259 B
Makefile
15 lines
259 B
Makefile
|
|
CFLAGS = -O2 `sdl-config --cflags`
|
|
LDFLAGS = `sdl-config --libs` -lGL -lGLU
|
|
|
|
all: stl-viewer
|
|
|
|
stl-viewer: stl-viewer.o stl.o
|
|
gcc -o $@ $^ $(LDFLAGS)
|
|
|
|
stl-viewer.o: stl-viewer.c stl.h
|
|
gcc -c -o $@ $< $(CFLAGS)
|
|
|
|
stl.o: stl.c stl.h
|
|
gcc -c -o $@ $< $(CFLAGS)
|