From 51664faebcc10b53a1a78cff95f0efc04a2c7f8e Mon Sep 17 00:00:00 2001 From: sin Date: Thu, 6 Feb 2014 11:14:33 +0000 Subject: Initial commit --- Makefile | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2e5d71b --- /dev/null +++ b/Makefile @@ -0,0 +1,57 @@ +include config.mk + +.POSIX: +.SUFFIXES: .c .o + +LIB = \ + util/eprintf.o + +SRC = sinit.c + +OBJ = $(SRC:.c=.o) $(LIB) +BIN = $(SRC:.c=) + +all: options binlib + +options: + @echo sinit build options: + @echo "CFLAGS = $(CFLAGS)" + @echo "LDFLAGS = $(LDFLAGS)" + @echo "CC = $(CC)" + +binlib: util.a + $(MAKE) bin + +bin: $(BIN) + +$(OBJ): config.h util.h config.mk + +config.h: + @echo creating $@ from config.def.h + @cp config.def.h $@ + +.o: + @echo LD $@ + @$(LD) -o $@ $< util.a $(LDFLAGS) + +.c.o: + @echo CC $< + @$(CC) -c -o $@ $< $(CFLAGS) + +util.a: $(LIB) + @echo AR $@ + @$(AR) -r -c $@ $(LIB) + @ranlib $@ + +install: all + @echo installing executable to $(DESTDIR)$(PREFIX)/bin + @cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin + @cd $(DESTDIR)$(PREFIX)/bin && chmod 755 $(BIN) + +uninstall: + @echo removing executable from $(DESTDIR)$(PREFIX)/bin + @cd $(DESTDIR)$(PREFIX)/bin && rm -f $(BIN) + +clean: + @echo cleaning + @rm -f $(BIN) $(OBJ) $(LIB) util.a -- cgit v1.2.3-54-g00ecf