diff options
Diffstat (limited to 'TC/scenario1/Makefile')
-rwxr-xr-x | TC/scenario1/Makefile | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/TC/scenario1/Makefile b/TC/scenario1/Makefile deleted file mode 100755 index 454fc3e..0000000 --- a/TC/scenario1/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -CC ?= gcc - -TARGETS = \ - utc_SecurityFW_ssm_write_file_func \ - utc_SecurityFW_ssm_write_buffer_func \ - utc_SecurityFW_ssm_read_func \ - utc_SecurityFW_ssm_getinfo_func \ - utc_SecurityFW_ssm_delete_file_func - -PKGS = secure-storage - -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) *~ |