home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 277.lha / TestRH / src / makefile < prev    next >
Encoding:
Makefile  |  1989-08-08  |  269 b   |  14 lines

  1.  
  2. OBJ1 = command.o globals.o main.o rderxrt.o
  3. OBJ2 = breakout.o rderxsupp.o
  4. OBJ = $(OBJ1) $(OBJ2)
  5. CFLAGS = +l -n
  6. breakout.o : breakout.asm
  7.     as breakout.asm
  8. rderxsupp.o : rderxsupp.asm rderexx.i
  9.     as rderxsupp.asm
  10. testrh: $(OBJ)
  11.     ln -o testrh -T -G $(OBJ) -larp32 -lc32
  12.  
  13.  
  14.