-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
90 lines (69 loc) · 1.96 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
##############################
# @file Makefile for cligraph
# @author Noah Harvey <[email protected]>
##############################
#
## PROJECT ##############################
SHELL=/bin/sh
PROJECT=cligraph
VERSION=0.1
## END PROJECT ############################
#
## DIRS ##############################
PREFIX=.
BINDIR=$(PREFIX)/bin
IDIR=$(PREFIX)/include
SRCDIR=$(PREFIX)/src
LIBDIR=$(PREFIX)/lib
CLEAN=$(LIBDIR) $(BINDIR)
REQUIRED_DIRS=$(BINDIR) $(LIBDIR)
## END DIRS ############################
#
## FILES ##############################
DOXYGEN_CONFIG_FILE=$(PREFIX)/doxygen.conf
## END FILES ############################
#
## FLAGS ##############################
LLIBS=dl llist pthread ncurses menu
LLIBS:=$(patsubst %, -l%, $(LLIBS))
export CC=gcc
export CFLAGS=-I$(IDIR) -Wall -g -fPIC
export LFLAGS=$(LLIBS)
SOFLAGS=-shared
## END FLAGS ############################
#
## OBJECTS ##############################
OBJS:=$(patsubst %.c, %.o, $(wildcard $(SRCDIR)/*.c))
LIBOBJS=plugins.o tui.o winmgr.o keyboard.o
LIBOBJS:=$(patsubst %.o, $(SRCDIR)/%.o, $(LIBOBJS))
LIBOBJECTS=$(filter $(LIBOBJS), $(OBJS))
LIBNAME=$(PROJECT)
LIBTARGET=$(LIBDIR)/lib$(LIBNAME).so
OBJECTS:=$(filter-out $(LIBOBJECTS), $(OBJS))
## END OBJECTS ############################
#
## TARGETS ##############################
TARGET=$(BINDIR)/$(PROJECT)
.PHONY: all setup clean package doc
all: clean setup $(TARGET)
#for debuging this make file
debugmk:
@echo $(OBJECTS)
@echo $(LIBOBJECTS)
#create directories that are needed before building
setup:
@mkdir -p $(REQUIRED_DIRS)
$(LIBTARGET): $(LIBOBJECTS)
$(CC) -o $(LIBTARGET) $(LIBOBJECTS) $(SOFLAGS) $(LFLAGS)
$(TARGET): $(LIBTARGET) $(OBJECTS)
$(CC) -o $@ $(OBJECTS) $(LFLAGS) -L$(LIBDIR) -l$(LIBNAME)
#perform a recursive build
#build: $(SUBDIRS)
#perform a recursive clean
#clean: $(SUBDIRS)
clean: CLEAN += $(OBJECTS) $(LIBOBJECTS)
clean:
rm -rf $(CLEAN)
doc:
doxygen $(DOXYGEN_CONFIG_FILE)
## END TARGETS ############################