Changeset 97
- Timestamp:
- Aug 10, 2010, 12:40:57 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/make/java/npt/Makefile
r2 r97 58 58 CPPFLAGS_OPT += -DNDEBUG 59 59 60 #61 # Library to compile.62 #63 include $(BUILDDIR)/common/Library.gmk64 65 60 # We don't want to link against -ljava 66 61 JAVALIB= … … 71 66 endif 72 67 68 ifeq ($(PLATFORM), os2) 69 70 # exports live in .def file 71 DEF_FILE = $(OBJDIR)/$(LIBRARY).def 72 $(DEF_FILE): $(MAKEFILE) 73 @$(ECHO) 'EXPORTS \n \ 74 nptInitialize = "_nptInitialize@12" \n \ 75 nptTerminate = "_nptTerminate@8" \n \ 76 ' > $@ 77 78 clean:: 79 -$(RM) $(DEF_FILE) 80 81 endif 82 83 # 84 # Library to compile. 85 # 86 include $(BUILDDIR)/common/Library.gmk 87 73 88 # 74 89 # Add to ambient vpath so we pick up the library files 75 90 # 76 vpath %.c $(SRCDIR) :$(PSRCDIR)91 vpath %.c $(SRCDIR) $(PSRCDIR) 77 92
Note:
See TracChangeset
for help on using the changeset viewer.