aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
blob: d85223222f4eeab461321fb5d124100bcd0ed9f6 (plain) (blame)
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
VERSION=\"$(shell git describe --tags --dirty)\"

PREFIX = /usr/local

all: opendeco opendeco_test libopendeco.a

opendeco: src/opendeco.c src/deco.c src/deco.h src/schedule.c src/schedule.h src/output.c src/output.h
	gcc --std=c99 -pedantic -Wall -Werror -O3 -DVERSION=${VERSION} src/opendeco.c src/deco.c src/schedule.c src/output.c -lm -o opendeco

opendeco_test: test/opendeco_test.c test/deco_test.c src/deco.c 
	gcc --std=c99 -pedantic -Wall -Werror -O3 test/minunit.c test/opendeco_test.c test/deco_test.c src/deco.c -lm -o opendeco_test

libopendeco.a:
	gcc -c src/deco.c -o src/deco.o
	gcc -c src/schedule.c -o src/schedule.o
	gcc -c src/output.c -o src/output.o
	ar rs libopendeco.a src/deco.o src/schedule.o src/output.o

lib: libopendeco.a

run: opendeco
	./opendeco -d 30 -t 120 -g EAN32 --decogasses EAN50

test: opendeco_test
	./opendeco_test

install: all
	mkdir -p ${DESTDIR}${PREFIX}/bin
	cp -f opendeco ${DESTDIR}${PREFIX}/bin
	chmod 755 ${DESTDIR}${PREFIX}/bin/opendeco

uninstall:
	rm -f ${DESTDIR}${PREFIX}/bin/opendeco

clean:
	rm -f opendeco
	rm -f opendeco_test
	rm -f src/*.o
	rm -f libopendeco.a