summaryrefslogtreecommitdiff
path: root/TC/unit/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TC/unit/Makefile')
-rwxr-xr-xTC/unit/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/TC/unit/Makefile b/TC/unit/Makefile
new file mode 100755
index 0000000..a1176cb
--- /dev/null
+++ b/TC/unit/Makefile
@@ -0,0 +1,31 @@
+CC ?= gcc
+
+TARGETS = utc_SensorFW_sf_get_properties_func \
+ utc_SensorFW_sf_is_sensor_event_available_func \
+ utc_SensorFW_sf_connect_func \
+ utc_SensorFW_sf_disconnect_func \
+ utc_SensorFW_sf_start_func \
+ utc_SensorFW_sf_stop_func \
+ utc_SensorFW_sf_register_event_func \
+ utc_SensorFW_sf_unregister_event_func \
+ utc_SensorFW_sf_get_data_func \
+ utc_SensorFW_sf_check_rotation_func
+
+PKGS = sf_common sensor
+
+LDFLAGS = `pkg-config --libs $(PKGS)`
+LDFLAGS += $(TET_ROOT)/lib/tet3/tcm_s.o
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -ltcm_s
+LDFLAGS += -L$(TET_ROOT)/lib/tet3 -lapi_s
+
+CFLAGS = -I. `pkg-config --cflags $(PKGS)`
+CFLAGS += -I$(TET_ROOT)/inc/tet3
+CFLAGS += -Wall
+
+all: $(TARGETS)
+
+$(TARGETS): %: %.c
+ $(CC) -o $@ $< $(CFLAGS) $(LDFLAGS)
+
+clean:
+ rm -f $(TARGETS)