# Makefile for OpenGL program

TOPDIR=build/
include $(TOPDIR)/Make.inc
OGL_LIB=

DEST=main
OBJS=main.o

include $(TOPDIR)/Make.common

basic: basic.o
	$(LINK) $< -o $@ $(LIBS) $(SYSLIBS)
