summaryrefslogtreecommitdiff
path: root/openwrt/package/robocfg/src/Makefile
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2006-06-18 18:05:20 +0000
committerNicolas Thill <nico@openwrt.org>2006-06-18 18:05:20 +0000
commit52f8d5bdce1bce9fc1119c1674fd5be24453a22c (patch)
tree6942b7366d21e272fa7b72f91dd15d938bf529a2 /openwrt/package/robocfg/src/Makefile
parente5c5a14618e03b343d76315a2bd2edf6abe6056e (diff)
downloadmtk-20170518-52f8d5bdce1bce9fc1119c1674fd5be24453a22c.zip
mtk-20170518-52f8d5bdce1bce9fc1119c1674fd5be24453a22c.tar.gz
mtk-20170518-52f8d5bdce1bce9fc1119c1674fd5be24453a22c.tar.bz2
move source files to src/.
SVN-Revision: 3993
Diffstat (limited to 'openwrt/package/robocfg/src/Makefile')
-rw-r--r--openwrt/package/robocfg/src/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/openwrt/package/robocfg/src/Makefile b/openwrt/package/robocfg/src/Makefile
new file mode 100644
index 0000000..fa763ed
--- /dev/null
+++ b/openwrt/package/robocfg/src/Makefile
@@ -0,0 +1,12 @@
+# $Id$
+
+all: robocfg
+
+%.o: %.c
+ $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
+
+robocfg: robocfg.o
+ $(CC) -o $@ $^
+
+clean:
+ rm -f *.o robocfg