draft
[gdbmicli.git] / libmigdb / examples / Makefile
1 #!/usr/bin/make
2
3 all: test_target x11_test remote_test linux_test target_frames x11_fr_test \
4         x11_wp_test x11_cpp_test pty_test
5
6 CFLAGS=-Wall -g3 -I../src
7 CXXFLAGS=-Wall -g3 -I../src
8 LDLIBS=
9
10 ticepic: ticepic.c ../src/libmigdb.a
11
12 x11_test: x11_test.c ../src/libmigdb.a
13
14 x11_cpp_test: x11_cpp_test.cc ../src/libmigdb.a
15
16 x11_fr_test: x11_fr_test.c ../src/libmigdb.a
17
18 x11_wp_test: x11_wp_test.c ../src/libmigdb.a
19
20 remote_test: remote_test.c ../src/libmigdb.a
21
22 linux_test: linux_test.c ../src/libmigdb.a
23
24 pty_test: pty_test.c ../src/libmigdb.a
25
26 clean:
27         -@rm *.o *.a test_target x11_test remote_test linux_test 2> /dev/null
28         -@rm x11_wp_test x11_cpp_test target_frames x11_fr_test 2> /dev/null
29         -@rm pty_test 2> /dev/null
30
31