Fix typo in OIDs corresponding to SHA256, SHA384, and SHA512 (#21707)
[mono-project.git] / mcs / jay / Makefile
blob7a46c78fc959cc2be0552fa06cae17bb2fe938d5
1 thisdir := jay
2 SUBDIRS :=
3 include ../build/rules.make
5 LOCAL_CFLAGS = -DSKEL_DIRECTORY=\""$(prefix)/share/jay"\"
6 NO_INSTALL = yes
8 sources = closure.c error.c lalr.c lr0.c main.c mkpar.c output.c reader.c \
9 symtab.c verbose.c warshall.c
11 datafiles = ACKNOWLEDGEMENTS NEW_FEATURES NOTES README README.jay skeleton \
12 skeleton.cs
14 DISTFILES = $(datafiles) $(sources) jay.1 $(wildcard *.h) jay.vcxproj
16 all-local: jay
18 install-local:
19 uninstall-local:
21 ifndef NO_INSTALL
22 install-local: jay
23 $(MKINSTALLDIRS) $(DESTDIR)$(prefix)/bin
24 $(MKINSTALLDIRS) $(DESTDIR)$(prefix)/share/jay
25 $(MKINSTALLDIRS) $(DESTDIR)$(prefix)/share/man/man1
26 $(INSTALL_BIN) jay $(DESTDIR)$(prefix)/bin
27 for datafile in $(datafiles) ; do \
28 $(INSTALL_DATA) $$datafile $(DESTDIR)$(prefix)/share/jay ; \
29 done
30 $(INSTALL_DATA) jay.1 $(DESTDIR)$(prefix)/share/man/man1
32 uninstall-local:
33 -rm -f $(DESTDIR)$(prefix)/bin/jay
34 for datafile in $(datafiles) ; do \
35 rm -f $(DESTDIR)$(prefix)/share/jay/$$datafile || : ; \
36 done
37 -rm -f $(DESTDIR)$(prefix)/share/man/man1/jay.1
38 endif
40 clean-local:
41 rm -f jay *.o *.exe *.pdb
43 dist-local: dist-default
45 test-local run-test-local run-test-ondotnet-local doc-update-local:
47 ifndef ENABLE_MSVC_ONLY
49 jay: $(sources:.c=.o)
50 $(CCOMPILE) $(LDFLAGS) -o $@ $^
52 %.o: %.c
53 $(CCOMPILE) $(JAY_CFLAGS) -c -o $@ $^
55 else # !ENABLE_MSVC_ONLY
57 jay:
58 make -C $(topdir)/../msvc jay
60 endif # !ENABLE_MSVC_ONLY