head	1.1;
access;
symbols
	experimental-1:1.1.0.4
	autoconf:1.1.0.2;
locks; strict;
comment	@# @;


1.1
date	99.02.25.02.06.29;	author brianp;	state Exp;
branches;
next	;


desc
@@


1.1
log
@initial check-in
@
text
@# $Id$

# Makefile for sample programs for MS-DOS with DJGPP

##### MACROS #####

INCDIR = ../include

GL_LIBS =  ../lib/dosglut.a ../lib/dosglub.a ../lib/dosmesa.a

LIB_DEP = $(GL_LIBS)

PROGS = accum bitmap1 bitmap2 blendeq blendxor copy depth \
	eval fog font line logo nurb olympic \
	point prim quad select shape \
	sphere star stencil stretch texture \
	tri wave

##### RULES #####

.c: $(LIB_DEP)
	gcc -I$(INCDIR) $(CFLAGS) $< $(LIB_DEP) -o $@@


##### TARGETS #####

default: $(PROGS)

clean:
	del *. 

realclean: clean
	del *.exe



@
