diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2021-08-15 00:16:45 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2021-08-15 00:16:45 -0400 |
| commit | 723428bebe3105ad3c3406e416402d1831b482c4 (patch) | |
| tree | ff990e306163515973746ddfb261f29ba8765441 /binutils-1.9/hp-bin/Makefile | |
| download | linux-0.01-distro-723428bebe3105ad3c3406e416402d1831b482c4.tar.gz linux-0.01-distro-723428bebe3105ad3c3406e416402d1831b482c4.tar.bz2 linux-0.01-distro-723428bebe3105ad3c3406e416402d1831b482c4.zip | |
Inital commit
Diffstat (limited to 'binutils-1.9/hp-bin/Makefile')
| -rw-r--r-- | binutils-1.9/hp-bin/Makefile | 15 |
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 |
