diff options
Diffstat (limited to 'pr/src/md/unix/Makefile')
-rw-r--r-- | pr/src/md/unix/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pr/src/md/unix/Makefile b/pr/src/md/unix/Makefile index 7d36371c..3d9e41df 100644 --- a/pr/src/md/unix/Makefile +++ b/pr/src/md/unix/Makefile @@ -94,6 +94,10 @@ RHAPSODY_CSRCS = \ rhapsody.c \ $(NULL) +NEXTSTEP_CSRCS = \ + nextstep.c \ + $(NULL) + NEC_CSRCS = \ nec.c \ $(NULL) @@ -163,6 +167,9 @@ endif ifeq ($(OS_ARCH),Rhapsody) CSRCS += $(RHAPSODY_CSRCS) endif +ifeq ($(OS_ARCH),NEXTSTEP) +CSRCS += $(NEXTSTEP_CSRCS) +endif ifeq ($(OS_ARCH),NEC) CSRCS += $(NEC_CSRCS) endif |