diff options
author | Daniel F. Dickinson <cshored@thecshore.com> | 2018-08-03 12:36:51 -0400 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-09-19 20:08:19 +0200 |
commit | 58d97b5e271bc0d7507eab5b9bd2902181864e02 (patch) | |
tree | 80e250346ad33c79b3f821daf7b7d9be90d99240 /modules/luci-mod-admin-full/src/Makefile | |
parent | 6ec0353201435e0d0d7d32820d8ba600b4ca7b5b (diff) |
modules: Split luci-mod-full
Move some common elements to luci-base, and otherwise make three
packages out of status, system, and network. They were mostly
separated already, but there were some shared elements between
status and network that are now in luci-base.
Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
Diffstat (limited to 'modules/luci-mod-admin-full/src/Makefile')
-rw-r--r-- | modules/luci-mod-admin-full/src/Makefile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/luci-mod-admin-full/src/Makefile b/modules/luci-mod-admin-full/src/Makefile deleted file mode 100644 index d6ed8c6e46..0000000000 --- a/modules/luci-mod-admin-full/src/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -%.o: %.c - $(CC) $(CPPFLAGS) $(CFLAGS) $(FPIC) -c -o $@ $< - -clean: - rm -f luci-bwc *.o - -luci-bwc: luci-bwc.o - $(CC) $(LDFLAGS) -o $@ $^ -ldl - -compile: luci-bwc - -install: compile - mkdir -p $(DESTDIR)/usr/bin - cp luci-bwc $(DESTDIR)/usr/bin/luci-bwc |