Makefile.std 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. # Makefile for file(1) cmd.
  2. # Copyright (c) Ian F. Darwin 86/09/01 - see LEGAL.NOTICE.
  3. # @(#)$Id: Makefile.std,v 1.19 2014-06-03 19:17:27 christos Exp $
  4. #
  5. # This software is not subject to any license of the American Telephone
  6. # and Telegraph Company or of the Regents of the University of California.
  7. #
  8. # Permission is granted to anyone to use this software for any purpose on
  9. # any computer system, and to alter it and redistribute it freely, subject
  10. # to the following restrictions:
  11. #
  12. # 1. The author is not responsible for the consequences of use of this
  13. # software, no matter how awful, even if they arise from flaws in it.
  14. #
  15. # 2. The origin of this software must not be misrepresented, either by
  16. # explicit claim or by omission. Since few users ever read sources,
  17. # credits must appear in the documentation.
  18. #
  19. # 3. Altered versions must be plainly marked as such, and must not be
  20. # misrepresented as being the original software. Since few users
  21. # ever read sources, credits must appear in the documentation.
  22. #
  23. # 4. This notice may not be removed or altered.
  24. #
  25. VERSION = 3.41
  26. SHELL = /bin/sh
  27. #MAGIC = /etc/magic
  28. MAGIC = /usr/local/etc/magic
  29. DEFS = -DMAGIC='"$(MAGIC)"' -DBUILTIN_ELF # -Dvoid=int
  30. CC = cc
  31. COPTS = -O -g # newer compilers allow both; else drop -O
  32. # For truly antique environments, use this for (dummy) include files:
  33. COPTS = -O # -Ilocalinc
  34. CFLAGS = $(COPTS) $(DEFS)
  35. LDFLAGS = $(COPTS) # -Bstatic # older gdb couldn't handle shared libs
  36. SHAR = bundle
  37. OFILE = /usr/bin/file # old or distributed version, for comparison
  38. # Where new binary lives; typically /usr/local (BSD), /usr/lbin (USG).
  39. BINDIR = /usr/local/bin
  40. # For installing our man pages;
  41. # MANCxxx is manual section for Commands, MANFxxx is section for file formats.
  42. # MANxDIR is directory names; MANxEXT is the filename extension. Usual values:
  43. # Variable V7 4BSD Sys V
  44. # MANCDIR /usr/man/man1 /usr/man/man1 /usr/man/u_man/man1
  45. # MANFDIR /usr/man/man5 /usr/man/man5 /usr/man/u_man/man4
  46. # MANCEXT 1 1 1
  47. # MANFEXT 5 5 4
  48. # --- possible alternative for 4BSD ---
  49. # MANCDIR /usr/local/man/man1
  50. # MANCEXT 1
  51. # or
  52. # MANCDIR /usr/man/manl
  53. # MANCEXT l
  54. # --- possible alternative for USG ---
  55. # MANCDIR /usr/man/local/man1
  56. # MANCEXT 1
  57. MANCDIR = /usr/local/man/man1
  58. MANCEXT = 1
  59. MANFDIR = /usr/local/man/man4
  60. MANFEXT = 4
  61. # There are no system-dependent configuration options (except maybe CFLAGS).
  62. # Uncomment any of these that is missing from your "standard" library.
  63. LOCALSRCS = # localsrc/getopt.c localsrc/strtol.c \
  64. # localsrc/strtok.c localsrc/strchr.c
  65. LOCALOBJS = # localsrc/getopt.o localsrc/strtol.o \
  66. # localsrc/strtok.o localsrc/strchr.o
  67. # These are not compiled in unless you use -Ilocalinc, but
  68. # are not commented out as "make dist" &c use them.
  69. LOCALINC = # localinc/*.h localinc/sys/*.h
  70. SRCS = file.c apprentice.c fsmagic.c softmagic.c ascmagic.c \
  71. compress.c is_tar.c readelf.c \
  72. print.c $(LOCALSRCS) $(LOCALINC)
  73. OBJS = file.o apprentice.o fsmagic.o softmagic.o ascmagic.o \
  74. compress.o is_tar.o readelf.o \
  75. print.o $(LOCALOBJS)
  76. HDRS = file.h readelf.h tar.h
  77. AUTOSRC=configure configure.in install-sh config.h.in Makefile.in
  78. ALLSRC = LEGAL.NOTICE README MAINT PORTING $(SRCS) $(HDRS) \
  79. Makefile.std file.man magic.man magic2mime $(AUTOSRC) \
  80. Localstuff Header
  81. ALLMAGIC = Magdir/[a-z]*
  82. all: file magic file.${MANCEXT} magic.${MANFEXT}
  83. TESTFILES = * tst/*
  84. try: all $(OFILE)
  85. cd tst; $(MAKE)
  86. time $(OFILE) $(TESTFILES) >/tmp/t1 # can't use ./magic
  87. time ./file -m ./magic $(TESTFILES) >/tmp/t2
  88. -diff -b /tmp/t[12]
  89. what ./file >lastnocore
  90. file: $(OBJS)
  91. $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@
  92. lint: $(SRCS)
  93. lint -ha $(DEFS) $(SRCS) | tee $@
  94. magic: Localstuff Header Magdir
  95. cat Header Localstuff Magdir/[a-z] > $@
  96. ascmagic.o: names.h
  97. compress.o apprentice.o ascmagic.o file.o fsmagic.o print.o softmagic.o: file.h
  98. install: file magic
  99. cp file $(BINDIR)/file
  100. cp magic $(MAGIC)
  101. install.man: file.${MANCEXT} magic.${MANFEXT}
  102. cp file.${MANCEXT} $(MANCDIR)/file.$(MANCEXT)
  103. cp magic.${MANFEXT} $(MANFDIR)/magic.$(MANFEXT)
  104. clean:
  105. rm -f *.o core file magic lint dist.* MANIFEST \
  106. magic.${MANFEXT} file.${MANCEXT} \
  107. config.h config.status config.cache config.log
  108. clobber:
  109. cd tst; $(MAKE) clean
  110. magic.${MANFEXT} : Makefile magic.man
  111. @rm -f $@
  112. sed -e s@__CSECTION__@${MANCEXT}@g \
  113. -e s@__FSECTION__@${MANFEXT}@g \
  114. -e s@__VERSION__@${VERSION}@g \
  115. -e s@__MAGIC__@${MAGIC}@g magic.man > $@
  116. file.${MANCEXT} : Makefile file.man
  117. @rm -f $@
  118. sed -e s@__CSECTION__@${MANCEXT}@g \
  119. -e s@__FSECTION__@${MANFEXT}@g \
  120. -e s@__VERSION__@${VERSION}@g \
  121. -e s@__MAGIC__@${MAGIC}@g file.man > $@
  122. send: dist
  123. ftp ftp.cs
  124. dist: dist.src dist.magic
  125. @echo Now check this patchlevel!
  126. ident patchlevel.h
  127. dist.src: $(ALLSRC) MANIFEST
  128. # Some versions of shar can't handle a single file from
  129. # a subdirectory, so we manually insert mkdir as needed.
  130. # The point is to exclude all the generable targets in tst.
  131. (echo mkdir localinc localinc/sys localsrc tst; \
  132. $(SHAR) $(ALLSRC) MANIFEST) > $@
  133. rcsdiff: $(ALLSRC)
  134. rcsdiff -q RCS/*
  135. MANIFEST: $(ALLSRC)
  136. ident $(ALLSRC) > MANIFEST
  137. dist.magic: Magdir
  138. # As above, but to exclude Magdir/RCS from being shipped.
  139. (echo mkdir Magdir; $(SHAR) $(ALLMAGIC)) >$@
  140. tar: $(ALLSRC) $(ALLMAGIC)
  141. -rm -fr file-${VERSION}
  142. -mkdir file-${VERSION} file-${VERSION}/Magdir
  143. ln $(ALLSRC) file-${VERSION}
  144. ln ${ALLMAGIC} file-${VERSION}/Magdir
  145. tar cvf file-${VERSION}.tar file-${VERSION}
  146. -rm -fr file-${VERSION}