summaryrefslogtreecommitdiff
path: root/algorithms/transducer/Makefile
blob: d7471660f176e4c8453becc6a186b1dc75f660cb (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
CFLAGS += -Wall -std=gnu99 -pedantic -g

.PHONY: all depend clean check install

SRCS = transducer.c
OBJS = transducer.o

all: transducer

main: $(OBJS)
	$(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^

depend:
	makedepend -s "# makedepend depends on me"\
	-- $(CFLAGS) -- $(SRCS)

clean:
	rm -f $(OBJS) transducer

check:
	@echo "No checks defined, sorry"

install:
	@echo "Nothing to install yet"