aboutsummaryrefslogtreecommitdiff
path: root/binutils-1.9/hp-bin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-1.9/hp-bin/Makefile')
-rw-r--r--binutils-1.9/hp-bin/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/binutils-1.9/hp-bin/Makefile b/binutils-1.9/hp-bin/Makefile
new file mode 100644
index 0000000..8ca44f1
--- /dev/null
+++ b/binutils-1.9/hp-bin/Makefile
@@ -0,0 +1,15 @@
+CFLAGS = -O -I../hp-include
+EXECUTABLES = hpxt chatr
+
+all : $(EXECUTABLES)
+
+clean :
+ rm -f *.o $(EXECUTABLES)
+
+hpxt : hpxt.o ioutil.o
+ $(CC) $(CFLAGS) -o hpxt hpxt.o ioutil.o
+
+chatr : chatr.o ioutil.o
+ $(CC) $(CFLAGS) -o chatr chatr.o ioutil.o
+
+hpxt.o chatr.o : ioutil.h