aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/dyn/makefile.pd-linux
blob: 1a8e582de9145ad76811e5ead420f7814edc02f2 (plain)
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
# Makefile for gcc @ linux 
# 
# usage:
# to build run "make -f makefile.pd-linux"
# to install (as root), do "make -f makefile.pd-linux install"
#

CONFIG=config-pd-linux.txt

include ${CONFIG}

# compiler+linker stuff 
INCLUDES=${PDPATH}
FLAGS=${UFLAGS}

# compiler flags for optimized build
CFLAGS=-O2

# compiler flags for debug build
CFLAGS_D=-g

# flags for shared linking
LSHFLAGS= -shared

# ----------------------------------------------
# the rest can stay untouched
# ----------------------------------------------

# all the source files from the package
include make-files.txt

MAKEFILE=makefile.pd-linux

TARGET=$(TARGDIR)/lib$(NAME).so
TARGET_D=$(TARGDIR)/lib$(NAME)_d.so
HDRS=$(PHDRS) $(IHDRS)


all: $(TARGDIR) $(TARGET) $(TARGET_D)

$(TARGDIR):
	mkdir $(TARGDIR)

$(patsubst %,$(SRCDIR)/%,$(SRCS)): $(patsubst %,$(SRCDIR)/%,$(HDRS)) $(patsubst %,$(SRCDIR)/%,$(IHDRS)) $(MAKEFILE) $(CONFIG)
	touch $@

$(TARGDIR)/%.o : $(SRCDIR)/%.cpp
	$(CXX) -c -shared $(CFLAGS) $(CFLAGS_T)  $(CFLAGS_S) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(SRCDIR)) $< -o $@

$(TARGDIR)/%.do : $(SRCDIR)/%.cpp 
	$(CXX) -c -shared $(CFLAGS_D) $(CFLAGS_T)  $(CFLAGS_S) $(FLAGS) $(patsubst %,-I%,$(INCLUDES) $(SRCDIR)) $< -o $@

$(TARGET) : $(patsubst %.cpp,$(TARGDIR)/%.o,$(SRCS))
	$(CXX) $(LSHFLAGS) -o $@ $^ 

$(TARGET_D) : $(patsubst %.cpp,$(TARGDIR)/%.do,$(SRCS))
	$(CXX) $(LSHFLAGS) -o $@ $^ 

.PHONY: clean install

clean:
	rm -f $(TARGDIR)/*.{o,do} $(TARGET) $(TARGET_D)
	
ifdef PREFIX

install:: $(PREFIX)
endif

install:: $(TARGET) $(TARGET_D)
#	cp $(patsubst %,$(SRCDIR)/%,$(PHDRS)) $(PREFIX)/include
	cp $(TARGDIR)/lib*.dylib $(PREFIX)/lib