summaryrefslogtreecommitdiff
path: root/package/fonera-mp3/src/cli/Makefile
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2008-08-05 00:33:04 +0000
committerJohn Crispin <john@openwrt.org>2008-08-05 00:33:04 +0000
commit936f53e69c09d7ea6bd8ddefebc1d06ada5f73fd (patch)
tree29fc7d9a1924c45fd42a8dab0dbe09df848ce3b7 /package/fonera-mp3/src/cli/Makefile
parentb0b1f64b645ab613bf60ebf1cf89bbe177067e8e (diff)
downloadmtk-20170518-936f53e69c09d7ea6bd8ddefebc1d06ada5f73fd.zip
mtk-20170518-936f53e69c09d7ea6bd8ddefebc1d06ada5f73fd.tar.gz
mtk-20170518-936f53e69c09d7ea6bd8ddefebc1d06ada5f73fd.tar.bz2
EOF for fonera-mp3 packages
SVN-Revision: 12113
Diffstat (limited to 'package/fonera-mp3/src/cli/Makefile')
-rw-r--r--package/fonera-mp3/src/cli/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/package/fonera-mp3/src/cli/Makefile b/package/fonera-mp3/src/cli/Makefile
deleted file mode 100644
index e6aa0df..0000000
--- a/package/fonera-mp3/src/cli/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-
-PROGS = mplay
-
-INSTDIR = $(prefix)/usr/bin
-INSTMODE = 0755
-INSTOWNER = root
-INSTGROUP = root
-
-OBJS = main.o
-
-all: $(PROGS)
-$(PROGS):
- $(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o mplay main.c
- $(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o mplay_tcp main_tcp.c
- gcc -o mplay_tcp_native main_tcp.c
- $(STRIP) mplay
- $(STRIP) mplay_tcp
-
-install: $(PROGS)
- $(INSTALL) -d $(INSTDIR)
- $(INSTALL) -m $(INSTMODE) -o $(INSTOWNER) -g $(INSTGROUP) $(PROGS) $(INSTDIR)
- $(INSTALL) -m $(INSTMODE) -o $(INSTOWNER) -g $(INSTGROUP) $(PROGS)_tcp $(INSTDIR)
-
-clean:
- rm -f $(PROGS) *.o core
-