-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
51 lines (40 loc) · 925 Bytes
/
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
CFLAGS=-O2 -fPIC -Wall -Wextra
all: bin/tete lib/libtete.so
bin/tete: test.o a.o -ldl
lib/libtete.so: a.o
###################################
# don't change stuff beneath here #
###################################
ifndef SRCDIR
SRCDIR=src
endif
ifndef BINDIR
BINDIR=bin
endif
ifndef LIBDIR
LIBDIR=lib
endif
ifndef DEPDIR
DEPDIR=.dep
endif
ifndef OBJDIR
OBJDIR=.obj
endif
clean:
@rm -fr $(DEPDIR) $(OBJDIR) $(BINDIR) $(LIBDIR)
$(BINDIR)/%:
@mkdir -p $(BINDIR)
$(CC) -o $@ $(CFLAGS) $(patsubst %.o,$(OBJDIR)/%.o,$^)
$(LIBDIR)/%:
@mkdir -p $(LIBDIR)
$(CC) -o $@ $(CFLAGS) -g -shared $(patsubst %.o,$(OBJDIR)/%.o,$^)
%.o: $(OBJDIR)/%.o
@echo -n
.SECONDARY:
$(OBJDIR)/%.o: $(SRCDIR)/%.c $(DEPDIR)/%.dep
@mkdir -p $(OBJDIR)
$(CC) -o $@ $(CFLAGS) -c $<
$(DEPDIR)/%.dep: $(SRCDIR)/%.c
@mkdir -p $(DEPDIR)
@$(CC) -M -MM -MT $(patsubst $(SRCDIR)/%.c,$(OBJDIR)/%.o,$<) -o $@ $<
-include $(wildcard $(DEPDIR)/*.dep)