diff options
author | rsc <devnull@localhost> | 2003-10-11 03:58:46 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-10-11 03:58:46 +0000 |
commit | 90026180d1d5fe141ced5b83028a257746a24687 (patch) | |
tree | 217c8ff845ddd40483f1046942d3c0e30369ac40 /src/libbio | |
parent | 93fb47050c80d20d668035c7d1b89d610c1aa7d8 (diff) | |
download | plan9port-90026180d1d5fe141ced5b83028a257746a24687.tar.gz plan9port-90026180d1d5fe141ced5b83028a257746a24687.tar.bz2 plan9port-90026180d1d5fe141ced5b83028a257746a24687.zip |
Use new directory structure.
Diffstat (limited to 'src/libbio')
-rw-r--r-- | src/libbio/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libbio/Makefile b/src/libbio/Makefile index 62fc84d3..f404f256 100644 --- a/src/libbio/Makefile +++ b/src/libbio/Makefile @@ -1,5 +1,5 @@ -9SRC=.. -include $(9SRC)/Makehdr +PLAN9=../.. +include $(PLAN9)/src/Makehdr LIB=libbio.a @@ -22,10 +22,10 @@ OFILES=\ bputrune.$O\ HFILES=\ - $(9SRC)/include/bio.h\ + $(PLAN9)/include/bio.h\ -include $(9SRC)/Makesyslib +include $(PLAN9)/src/Makesyslib bcat: bcat.$O $(LIB) - $(CC) -o bcat bcat.$O -L$(9SRC)/lib -lbio -lfmt -lutf + $(CC) -o bcat bcat.$O -L$(PLAN9)/lib -lbio -lfmt -lutf |