summaryrefslogtreecommitdiff
path: root/progs/egl/eglut/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'progs/egl/eglut/Makefile')
-rw-r--r--progs/egl/eglut/Makefile39
1 files changed, 0 insertions, 39 deletions
diff --git a/progs/egl/eglut/Makefile b/progs/egl/eglut/Makefile
deleted file mode 100644
index 364f5b0be3..0000000000
--- a/progs/egl/eglut/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# progs/egl/eglut
-
-TOP = ../../..
-include $(TOP)/configs/current
-
-INCLUDES = \
- -I$(TOP)/include \
- $(X11_CFLAGS)
-
-SOURCES = \
- eglut.c \
- eglut_screen.c \
- eglut_x11.c
-
-EGLUT_X11_OBJECTS = eglut.o eglut_x11.o
-EGLUT_SCREEN_OBJECTS = eglut.o eglut_screen.o
-
-default: depend libeglut-x11.a libeglut-screen.a
-
-libeglut-x11.a: $(EGLUT_X11_OBJECTS)
- $(MKLIB) -o eglut-x11 -static $(EGLUT_X11_OBJECTS)
-
-libeglut-screen.a: $(EGLUT_SCREEN_OBJECTS)
- $(MKLIB) -o eglut-screen -static $(EGLUT_SCREEN_OBJECTS)
-
-.c.o:
- $(CC) -c -o $@ $< $(INCLUDES) $(DEFINES) $(CFLAGS)
-
-depend: $(SOURCES)
- @rm -f depend
- @touch depend
- @$(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(SOURCES) \
- > /dev/null 2>/dev/null
-
-clean:
- rm -f *.o *.a
- rm -f depend depend.bak
-
-sinclude depend