blob: 0df6ae7ec4a4374e0b010460ab4529c2147d991e (
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
|
current: all
.SUFFIXES: .pd_linux
include ../../Make.include
INCLUDE = -I. -I$(PDSOURCE)
# the sources
SRC = $(sort $(filter %.c, $(wildcard *.c)))
TARGET = iemlib1.pd_linux
OBJ = $(SRC:.c=.o)
#
# ------------------ targets ------------------------------------
#
clean:
-rm ../../lib/$(TARGET) $(TARGET)
-rm *.o
all: $(OBJ)
@echo :: $(OBJ)
ld $(LDFLAGS) -o $(TARGET) *.o $(LIB)
strip --strip-unneeded $(TARGET)
-cp $(TARGET) ../../lib
$(OBJ) : %.o : %.c
touch $*.c
cc $(CFLAGS) $(INCLUDE) -c -o $*.o $*.c
|