Enabled VPATH feature: changed nearly all Makefiles (149 files).
[fw/sdcc] / support / librarian / Makefile
diff --git a/support/librarian/Makefile b/support/librarian/Makefile
deleted file mode 100644 (file)
index 99092d1..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-PRJDIR          = ../..
-
-include $(PRJDIR)/Makefile.common
-
-CFLAGS          += -Wall
-
-OBJECTS        = sdcclib.o
-
-SOURCES                = $(patsubst %.o,%.c,$(OBJECTS))
-
-TARGET         = $(PRJDIR)/bin/sdcclib$(EXEEXT)
-
-all: $(TARGET)
-
-install: all installdirs
-       $(INSTALL) $(TARGET) `echo $(DESTDIR)$(bindir)/sdcclib$(EXEEXT)|sed '$(transform)'`
-       $(STRIP) `echo $(DESTDIR)$(bindir)/sdcclib$(EXEEXT)|sed '$(transform)'`
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
-       rm -f $(DESTDIR)$(bindir)/sdcclib$(EXEEXT)
-
-# Performing self-test
-# --------------------
-check:
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating installation directories
-# ---------------------------------
-installdirs:
-       $(INSTALL) -d $(DESTDIR)$(bindir)
-
-
-# Creating dependencies
-# ---------------------
-dep:
-
-$(TARGET): $(OBJECTS)
-       $(CC) $(LDFLAGS) -o $@ $(OBJECTS)
-
-.c.o:
-       $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
-
-
-checkconf:
-
-include clean.mk