X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Ftest-framework%2Fyaffs2_image_maker%2FMakefile;fp=direct%2Ftest-framework%2Fyaffs2_image_maker%2FMakefile;h=27a1ba4830e46aa101ca746ed5b3ce287013c7ad;hb=9fa1f71bebff48a2f8f99f9b64b649fb23f4960e;hp=0000000000000000000000000000000000000000;hpb=223ff79f689aba309ebc3ef856fb46095148d40e;p=yaffs2.git diff --git a/direct/test-framework/yaffs2_image_maker/Makefile b/direct/test-framework/yaffs2_image_maker/Makefile new file mode 100644 index 0000000..27a1ba4 --- /dev/null +++ b/direct/test-framework/yaffs2_image_maker/Makefile @@ -0,0 +1,37 @@ +# Makefile for YAFFS direct test +# +# +# YAFFS: Yet another Flash File System. A NAND-flash specific file system. +# +# Copyright (C) 2002-2018 Aleph One Ltd. +# +# +# Created by Charles Manning +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 as +# published by the Free Software Foundation. +# +# NB Warning this Makefile does not include header dependencies. +# + + + + +YDI_DIR = ../../ +YDI_FRAMEWORK_DIR = ../ + +TARGETS = yaffs2_image_maker + +all: $(TARGETS) + +DIRECTTESTOBJS = $(COMMONTESTOBJS) yaffs2_image_maker.o + +ALL_UNSORTED_OBJS += $(DIRECTTESTOBJS) + +include ../FrameworkRules.mk + + +yaffs2_image_maker: $(FRAMEWORK_SOURCES) $(DIRECTTESTOBJS) + gcc -o $@ $(DIRECTTESTOBJS) -lpthread +