summaryrefslogtreecommitdiff
path: root/experimental/jvanderw/rootimg/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/jvanderw/rootimg/src/Makefile')
-rw-r--r--experimental/jvanderw/rootimg/src/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/experimental/jvanderw/rootimg/src/Makefile b/experimental/jvanderw/rootimg/src/Makefile
deleted file mode 100644
index ddfccfc..0000000
--- a/experimental/jvanderw/rootimg/src/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright (c) 2012 Jess VanDerwalker
-#
-# Makefile for the rootimg project
-#
-
-CC = gcc
-CFLAGS = -I/opt/X11/include/ -Wall -g -c
-LDFLAGS = `pkg-config --libs xcb xcb-aux xcb-damage xcb-composite xcb-image`
-
-# Sources
-SOURCES = rootimg.c util.c
-OBJECTS = $(SOURCES:.c=.o)
-
-# Name of executable target:
-EXECUTABLE = rootimg
-
-# XCB specific flags:
-CFLAGS += `pkg-config --libs xcb xcb-aux xcb-damage xcb-composite xcb-image`
-
-
-all: $(SOURCES) $(EXECUTABLE)
-
-$(EXECUTABLE): $(OBJECTS)
- $(CC) $(LDFLAGS) $(OBJECTS) -o $@
-
-.c.o:
- $(CC) $(CFLAGS) $< -o $@
-
-clean:
- rm $(OBJECTS) $(EXECUTABLE)