home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / dtp / typeface / source / dmakefile < prev    next >
Encoding:
Makefile  |  1996-07-16  |  238 b   |  10 lines

  1. SRCS = typeface.c char.c error.c fontio.c gadget.c node.c text.c locale.c
  2. OBJS = $(SRCS:"*.c":"*.o")
  3. EXE  = Typeface
  4.  
  5. $(EXE) : $(OBJS)
  6.     dcc %(right) -o %(left) -l bgui -l textfield
  7.  
  8. $(OBJS) : $(SRCS)
  9.     dcc -c -mi %(right) -o %(left)
  10.