Opengl红宝书Makefile

来源:互联网 发布:社交类软件应用推荐 编辑:程序博客网 时间:2024/05/05 19:47

在Ubuntu下默认的Makefile.sgi编译不过,于是稍微改了下。

 

TARGETS = aaindex aapoly aargb accanti accpersp \
        alpha alpha3D bezcurve bezmesh bezsurf \
        clip colormat cube dof double \
        drawf feedback fog fogindex font hello \
        image light lines list material \
        model movelight pickdepth picksquare planet \
        polys quadric robot scene select \
        smooth stencil stroke surface teapots tess \
        tesswind checker mipmap \
        polyoff texbind texgen texprox texsub varray wrap \
        texturesurf torus trim unproject


LLDLIBS=-lglut -lGLU -lGL -lX11 -lm

default: $(TARGETS)

all: default

$(TARGETS) : $@
        gcc $@.c $(LLDLIBS) -o $@

clean:
        -rm -f *.o $(TARGETS)

原创粉丝点击