-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
74 lines (58 loc) · 2.05 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
68
69
70
71
72
73
74
#Compiler and Linker
CC := gcc
#The Target Binary Program
TARGET := dmgemu
#The Directories, Source, Includes, Objects, Binary and Resources
SRCDIR := src
INCDIR := src/inc
BUILDDIR := obj
TARGETDIR := bin
RESDIR := res
SRCEXT := c
DEPEXT := h
OBJEXT := o
#Flags, Libraries and Includes
CFLAGS := -lXrandr -lpthread -lXi-fopenmp -Wall -Werror -O3 -D_OPENBSD_SOURCE
LIB := -lGL -lGLU -lglfw -lX11 -lXxf86vm
INC := -I$(INCDIR) -I/usr/local/include
INCDEP := -I$(INCDIR)
#---------------------------------------------------------------------------------
#DO NOT EDIT BELOW THIS LINE
#---------------------------------------------------------------------------------
SOURCES := $(shell find $(SRCDIR) -type f -name *.$(SRCEXT))
OBJECTS := $(patsubst $(SRCDIR)/%,$(BUILDDIR)/%,$(SOURCES:.$(SRCEXT)=.$(OBJEXT)))
#Defauilt Make
all: resources $(TARGET)
# Debug builds
debug: CFLAGS += -DDEBUG -g
debug: resources $(TARGET)
#Remake
remake: cleaner all
#Copy Resources from Resources Directory to Target Directory
resources: directories
#Make the Directories
directories:
\mkdir -p $(TARGETDIR)
\mkdir -p $(BUILDDIR)
#Clean only Objecst
clean:
\$(RM) -rf $(BUILDDIR)
#Full Clean, Objects and Binaries
cleaner: clean
\$(RM) -rf $(TARGETDIR)
#Pull in dependency info for *existing* .o files
-include $(OBJECTS:.$(OBJEXT)=.$(DEPEXT))
#Link
$(TARGET): $(OBJECTS)
\$(CC) -o $(TARGETDIR)/$(TARGET) $^ $(LIB)
#Compile
$(BUILDDIR)/%.$(OBJEXT): $(SRCDIR)/%.$(SRCEXT)
\mkdir -p $(dir $@)
\$(CC) $(CFLAGS) $(INC) -c -o $@ $<
\$(CC) $(CFLAGS) $(INCDEP) -MM $(SRCDIR)/$*.$(SRCEXT) > $(BUILDDIR)/$*.$(DEPEXT)
\cp -f $(BUILDDIR)/$*.$(DEPEXT) $(BUILDDIR)/$*.$(DEPEXT).tmp
\sed -e 's|.*:|$(BUILDDIR)/$*.$(OBJEXT):|' < $(BUILDDIR)/$*.$(DEPEXT).tmp > $(BUILDDIR)/$*.$(DEPEXT)
\sed -e 's/.*://' -e 's/\\$$//' < $(BUILDDIR)/$*.$(DEPEXT).tmp | fmt -1 | sed -e 's/^ *//' -e 's/$$/:/' >> $(BUILDDIR)/$*.$(DEPEXT)
\rm -f $(BUILDDIR)/$*.$(DEPEXT).tmp
#Non-File Targets
.PHONY: all remake clean cleaner resources debug