summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-04-20 14:35:09 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-04-20 14:35:09 +0000
commit846a883af45d2cfe1c6c3558fe9e5366ce0c7022 (patch)
treefd7547ae8d16da5954a4d95e560982396d7ba67f /src/Makefile
parent9e4d2c6816c56d8daa94297078f181ec36047df6 (diff)
downloadalpine-baselayout-846a883af45d2cfe1c6c3558fe9e5366ce0c7022.tar.bz2
alpine-baselayout-846a883af45d2cfe1c6c3558fe9e5366ce0c7022.tar.xz
switch to openrc
many of the initscripts are moved to there
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/Makefile b/src/Makefile
index ba4d5e1..047c474 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -2,8 +2,7 @@
CC = gcc
LD = gcc
-SBIN_TARGETS = runscript mkmntdirs
-USR_BIN_TARGETS = sendbug
+SBIN_TARGETS = mkmntdirs
TARGET = $(BIN_TARGETS) $(SBIN_TARGETS) $(USR_BIN_TARGETS)
.PHONY: all clean
@@ -12,17 +11,10 @@ all: $(TARGET)
%: %.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
-sendbug: atomicio.o sendbug.o lib.o
- $(CC) $(LDFLAGS) -o $@ $^
-
clean:
rm -f $(TARGET) *.o core *~
install: $(TARGET)
- install -m 0755 -d $(DESTDIR)/bin
install -m 0755 -d $(DESTDIR)/sbin
- install -m 0755 -d $(DESTDIR)/usr
- install -m 0755 -d $(DESTDIR)/usr/bin
- install -m 0755 $(USR_BIN_TARGETS) $(DESTDIR)/usr/bin
install -m 0755 $(SBIN_TARGETS) $(DESTDIR)/sbin