aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 8922662f56cbe049c82b3035567484e6139e6105 (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
CC = gcc
CFLAGS = -Wall -Wextra -std=c11 -g -fwrapv
LDFLAGS = -lsqlite3

TARGETS = tomsg_server

.PHONY: all clean remake

# Clear all implicit suffix rules
.SUFFIXES:

# Don't delete intermediate files
.SECONDARY:

all: $(TARGETS)

clean:
	rm -f $(TARGETS) *.o *.sql.h

remake: clean
	$(MAKE) all


$(TARGETS): $(patsubst %.c,%.o,$(wildcard *.c))
	$(CC) -o $@ $^ $(LDFLAGS)

%.o: %.c $(wildcard *.h) $(patsubst %.sql,%.sql.h,$(wildcard *.sql))
	$(CC) $(CFLAGS) -c -o $@ $<

%.sql.h: %.sql
	xxd -i $^ $@