root/wiimote/Makefile.in @ d2323a579f283ed7393c20b762697766d2d01e1f

Revision d2323a579f283ed7393c20b762697766d2d01e1f, 0.6 KB (checked in by dsmith <dsmith@…>, 6 years ago)

Added struct wiimote info and info retrieval functions

git-svn-id: http://abstrakraft.org/cwiid/svn/trunk@47 918edb2d-ff29-0410-9de2-eb38e7f22bc7

  • Property mode set to 100644
Line 
1#Copyright (C) 2006 L. Donnie Smith
2
3COMMON = @top_builddir@/common
4include $(COMMON)/include/defs.mak
5
6LIB_NAME = wiimote
7MAJOR_VER = 0
8MINOR_VER = 1
9SOURCES = connect.c command.c event.c rw.c bluetooth.c util.c queue.c
10LDLIBS += -lbluetooth -lpthread -lrt
11LIB_INST_DIR = @libdir@
12INC_INST_DIR = @includedir@
13
14include $(COMMON)/include/lib.mak
15
16$(SHARED_LIB): $(SO_NAME) $(LINK_NAME)
17
18$(SO_NAME):
19        ln -sf $(SHARED_LIB) $(SO_NAME)
20
21$(LINK_NAME):
22        ln -sf $(SO_NAME) $(LINK_NAME)
23
24clean: remove_links
25
26remove_links:
27        rm -f $(SO_NAME) $(LINK_NAME)
28
29distclean: clean
30        rm Makefile
31
32.PHONY: distclean clean make_links remove_links
Note: See TracBrowser for help on using the browser.