aboutsummaryrefslogtreecommitdiff
path: root/test/timer/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/timer/Makefile')
-rw-r--r--test/timer/Makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/test/timer/Makefile b/test/timer/Makefile
deleted file mode 100644
index effaf54b9..000000000
--- a/test/timer/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright (c) 2013, Linaro Limited
-# All rights reserved.
-#
-# SPDX-License-Identifier: BSD-3-Clause
-
-ODP_ROOT = ../..
-ODP_APP = odp_timer_test
-
-include $(ODP_ROOT)/Makefile.inc
-include ../Makefile.inc
-
-.PHONY: default
-default: $(OBJ_DIR) $(ODP_APP)
-
-OBJS =
-OBJS += $(OBJ_DIR)/odp_timer_test.o
-
-DEPS = $(OBJS:.o=.d)
-
--include $(DEPS)
-
-
-#
-# Compile rules
-#
-$(OBJ_DIR)/%.o: %.c
- $(QUIET_CC)$(CC) -c -MD $(EXTRA_CFLAGS) $(CFLAGS) -o $@ $<
-
-#
-# Link rule
-#
-$(ODP_APP): $(ODP_LIB) $(OBJS)
- $(QUIET_LD)$(CC) $(LDFLAGS) $(OBJS) $(ODP_LIB) $(STD_LIBS) -o $@
-
-.PHONY: clean
-clean:
- $(Q)$(RMDIR) $(OBJ_DIR)
- $(Q)$(RM) $(ODP_APP)
- $(MAKE) -C $(ODP_DIR) clean
-
-.PHONY: install
-install:
- install -d $(DESTDIR)/share/odp
- install -m 0755 $(ODP_APP) $(DESTDIR)/share/odp/