blob: 086ee345e6f787d92455fde7c381332f4420d3c0 (
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
|
CC := clang
GIT_COMMIT := "$(shell git describe --tags)-$(shell git describe --always --match 'NOT A TAG')"
CFLAGS := -fPIC -DGIT_COMMIT='$(GIT_COMMIT)'
LFLAGS := -lm -shared
LINKER := $(CC)
TARGET := lullaby.so
SRCS := $(wildcard src/*.c) $(wildcard src/*/*.c)
OBJS := $(SRCS:.c=.o)
ifeq ($(OS),Windows_NT)
CFLAGS += -I/mingw64/include
LFLAGS += -L/mingw64/bin -llua54 -lws2_32
TARGET := $(TARGET:.so=.dll)
else
CFLAGS += -fPIC
endif
all: $(TARGET)
release: CFLAGS += -O3
release: all
debug: CFLAGS += -g
debug: all
reg:
rm src/reg.o
reg: all
%.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)
$(TARGET): $(OBJS)
$(LINKER) $(OBJS) -o $(TARGET) $(LFLAGS)
clean:
rm -f $(OBJS)
|