summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..41af90e
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,26 @@
+BINARIES += pci
+
+INCDIR +=
+LDINC += $(addprefix -L ,$(LIBDIR))
+LDFLAGS +=
+
+all: $(BINARIES)
+
+.PHONY: all depend clean
+
+include common.mk
+
+
+###############################################################
+# Target definitions
+
+
+pci: pci.o tools.o
+ echo -e "LD \t$@"
+ $(Q)$(CC) $(LDINC) $(LDFLAGS) $(CFLAGS) -o $@ $< tools.o
+
+clean:
+ @echo -e "CLEAN \t$(shell pwd)"
+ -$(Q)rm -f $(addprefix $(BINDIR)/,$(BINARIES))
+ -$(Q)rm -f $(OBJ)
+ -$(Q)rm -f $(DEPEND)