summaryrefslogtreecommitdiff
path: root/support/ltsm/Makefile
blob: 1cb32b7bfa319f361857db36f1056dbb5aa10612 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all:test_ltsm.so libltsm.a

libltsm.a:ltsm.o
	ar -r $@ $^;
	cp $@ ../../lib

test_ltsm.so:test_ltsm.o ltsm.o
	gcc -fPIC -shared -o $@ $^ -I/opt/MESA/include/MESA

test_ltsm.o:test_ltsm.c
	gcc -fPIC -c -D__USE_MISC -D_BSD_SOURCE -o $@ $^ -I/opt/MESA/include/MESA

ltsm.o:ltsm.c
	gcc -fPIC -c -D__USE_MISC -D_BSD_SOURCE -o $@ $^ -I/opt/MESA/include/MESA