From 723428bebe3105ad3c3406e416402d1831b482c4 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 15 Aug 2021 00:16:45 -0400 Subject: Inital commit --- binutils-1.9/hp-bin/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 binutils-1.9/hp-bin/Makefile (limited to 'binutils-1.9/hp-bin/Makefile') 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 -- cgit v1.2.3