diff options
Diffstat (limited to 'src/libregexp')
-rw-r--r-- | src/libregexp/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libregexp/Makefile b/src/libregexp/Makefile index 7e560b3c..7fdd7f95 100644 --- a/src/libregexp/Makefile +++ b/src/libregexp/Makefile @@ -1,5 +1,5 @@ -9SRC=.. -include $(9SRC)/Makehdr +PLAN9=../.. +include $(PLAN9)/src/Makehdr LIB=libregexp9.a @@ -14,10 +14,10 @@ OFILES=\ rregsub.$O\ HFILES=\ - $(9SRC)/include/regexp9.h\ + $(PLAN9)/include/regexp9.h\ regcomp.h\ -include $(9SRC)/Makesyslib +include $(PLAN9)/src/Makesyslib test: test.$O $(LIB) $(CC) -o test test.$O $(LIB) -L/usr/local/lib -lfmt -lutf |