Add two examples to illiustrate programming with libosl.
[osl.git] / examples / osltar / Makefile
1 all: osltar
2 %.o: %.c
3         gcc -O2 -g -c -Wall -o $@ $<
4 osltar: osltar.o
5         gcc -o $@ $< -losl
6 clean:
7         rm *.o osltar