]> git.gag.com Git - fw/sdcc/blobdiff - support/packihx/Makefile.in
* packihx/,
[fw/sdcc] / support / packihx / Makefile.in
diff --git a/support/packihx/Makefile.in b/support/packihx/Makefile.in
new file mode 100644 (file)
index 0000000..7711e97
--- /dev/null
@@ -0,0 +1,56 @@
+PRJDIR          = ../..
+VPATH           = @srcdir@
+srcdir          = @srcdir@
+top_builddir    = @top_builddir@
+
+include $(PRJDIR)/$(top_builddir)Makefile.common
+
+CFLAGS          += -Wall
+
+OBJECTS        = packihx.o
+
+SOURCES                = $(patsubst %.o,%.c,$(OBJECTS))
+
+TARGET         = $(PRJDIR)/$(top_builddir)bin/packihx$(EXEEXT)
+
+all: $(TARGET)
+
+install: all installdirs
+       $(INSTALL) $(TARGET) `echo $(DESTDIR)$(bindir)/packihx$(EXEEXT)|sed '$(transform)'`
+       $(STRIP) `echo $(DESTDIR)$(bindir)/packihx$(EXEEXT)|sed '$(transform)'`
+
+# Deleting all the installed files
+# --------------------------------
+uninstall:
+       rm -f $(DESTDIR)$(bindir)/packihx$(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 $(srcdir)/clean.mk