home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 348_01 / z80.mak < prev    next >
Text File  |  1991-05-02  |  187b  |  13 lines

  1. #
  2. # this is the makefile to the 8048 cross assembler
  3. #
  4.  
  5. OBJECTS = z80a.o z80aeval.o z80autil.o
  6. CFLAGS = -O
  7.  
  8. z80a: $(OBJECTS)
  9.     cc $(CFLAGS) $(OBJECTS) -o z80a
  10.  
  11. clean:
  12.     rm *.o
  13.