makefile.pc 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Makefile for GNU tar on MS-DOS using Turbo C 2.0.
  2. # Copyright (C) 1991 Free Software Foundation, Inc.
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2, or (at your option)
  6. # any later version.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. # GNU General Public License for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with this program; if not, write to the Free Software
  13. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14. CC = tcc
  15. RM = rm -f
  16. MODEL = m
  17. DEFS = -DNONAMES -DNO_REMOTE -DNO_MTIO -DSTDC_HEADERS -m$(MODEL) -Dmain=_main
  18. LIBS =
  19. DEF_AR_FILE = tar.out
  20. DEFBLOCKING = 20
  21. CFLAGS = -I. $(DEFS) \
  22. -DDEF_AR_FILE="$(DEF_AR_FILE)" \
  23. -DDEFBLOCKING=$(DEFBLOCKING)
  24. LDFLAGS = -m$(MODEL)
  25. OBJ1 = tar.obj create.obj extract.obj buffer.obj getoldopt.obj update.obj gnu.obj mangle.obj
  26. OBJ2 = version.obj list.obj names.obj diffarch.obj port.obj wildmat.obj getopt.obj
  27. OBJ3 = getopt1.obj regex.obj getdate.obj alloca.obj tcexparg.obj msd_dir.obj
  28. OBJS = $(OBJ1) $(OBJ2) $(OBJ3)
  29. all: tar
  30. tar: testpad.h getdate.c $(OBJS)
  31. $(RM) testpad.obj
  32. $(CC) $(LDFLAGS) -etar *.obj $(LIBS)
  33. .c.obj:
  34. $(CC) -c $(CFLAGS) $<
  35. testpad.h: testpad.exe
  36. testpad
  37. testpad.exe: testpad.c
  38. $(CC) $(LDFLAGS) -etestpad testpad.c $(LIBS)
  39. clean:
  40. $(RM) errs *.obj tar testpad testpad.h
  41. distclean: clean
  42. realclean: clean