Skip to content

Commit

Permalink
Removed everything unrelated to glxgears, added a simple makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
david committed Nov 8, 2014
1 parent 0b0634a commit dfebaff
Show file tree
Hide file tree
Showing 13 changed files with 191 additions and 2,719 deletions.
180 changes: 0 additions & 180 deletions CMakeLists.txt

This file was deleted.

13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
CC=gcc
CFLAGS=-I/usr/include/GL -D_GNU_SOURCE -DPTHREADS -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -Wbad-function-cast -Wold-style-definition -Wdeclaration-after-statement -O2
LFLAGS=-lGL -lGLEW -lGLU -lGL -lm -lX11 -lXext

glxgears: glxgears.o
gcc -o $@ $^ $(CFLAGS) $(LFLAGS)

glxgears.o: glxgears.c
$(CC) -c -o $@ $< $(CFLAGS) -MT $< -MD -MP -MF glxgears.Tpo

clean:
rm *.o
rm glxgears
28 changes: 0 additions & 28 deletions Makefile.am

This file was deleted.

15 changes: 0 additions & 15 deletions autogen.sh

This file was deleted.

Loading

0 comments on commit dfebaff

Please sign in to comment.