diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:03:31 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:03:31 +0000 |
commit | 576b3463d3a5782484f2949f782e4214cdbb5a9b (patch) | |
tree | 86eff8b4e7b42b755cd6b57f7afccbc3438742d9 /package/mtd/src/Makefile | |
parent | bce3747358ff708c24261b7105b172f01bd45800 (diff) | |
download | upstream-576b3463d3a5782484f2949f782e4214cdbb5a9b.tar.gz upstream-576b3463d3a5782484f2949f782e4214cdbb5a9b.tar.bz2 upstream-576b3463d3a5782484f2949f782e4214cdbb5a9b.zip |
move source file to src/.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3991 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mtd/src/Makefile')
-rw-r--r-- | package/mtd/src/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/mtd/src/Makefile b/package/mtd/src/Makefile new file mode 100644 index 0000000000..b9f256ad0c --- /dev/null +++ b/package/mtd/src/Makefile @@ -0,0 +1,12 @@ +# $Id$ + +all: mtd + +%.o: %.c + $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^ + +mtd: mtd.o + $(CC) -o $@ $^ + +clean: + rm -f *.o mtd |