forked from kbranigan/Simple-OpenGL-Image-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
67 lines (51 loc) · 1.56 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# SOIL makefile for linux (based on the AngelScript makefile)
# Type 'make' then 'make install' to complete the installation of the library
# For 'make install' to work, set LOCAL according to your system configuration
PREFIX = /usr/local
LOCAL = $(PREFIX)
LIB = libSOIL.a
INC = SOIL.h
SRCDIR = src
LIBDIR = lib
INCDIR = src
OBJDIR = obj
CXX = gcc
CXXFLAGS = -O2 -s -Wall
DELETER = rm -f
COPIER = cp
SRCNAMES = \
image_helper.c \
stb_image_aug.c \
image_DXT.c \
SOIL.c \
OBJ = $(addprefix $(OBJDIR)/, $(notdir $(SRCNAMES:.c=.o)))
BIN = $(LIBDIR)/$(LIB)
all: $(BIN)
$(BIN): $(OBJ)
mkdir -p $(LIBDIR)
$(DELETER) $(BIN)
ar r $(BIN) $(OBJ)
ranlib $(BIN)
@echo -------------------------------------------------------------------
@echo Done. As root, type 'make install' to install the library.
$(OBJDIR)/%.o: $(SRCDIR)/%.c
mkdir -p $(OBJDIR)
$(CXX) $(CXXFLAGS) -o $@ -c $<
clean:
$(DELETER) $(OBJ) $(BIN)
$(LOCAL)/lib/:
mkdir $(LOCAL)/lib
$(LOCAL)/include/:
mkdir $(LOCAL)/include
install: $(BIN) $(LOCAL)/lib/ $(LOCAL)/include/
@echo Installing to: $(LOCAL)/lib and $(LOCAL)/include...
@echo -------------------------------------------------------------------
$(COPIER) $(BIN) $(LOCAL)/lib/
$(COPIER) $(INCDIR)/$(INC) $(LOCAL)/include/
@echo -------------------------------------------------------------------
@echo SOIL library installed. Enjoy!
uninstall:
$(DELETER) $(LOCAL)/include/$(INC) $(LOCAL)/lib/$(LIB)
@echo -------------------------------------------------------------------
@echo SOIL library uninstalled.
.PHONY: all clean install uninstall