home *** CD-ROM | disk | FTP | other *** search
/ ftp.ee.pdx.edu / 2014.02.ftp.ee.pdx.edu.tar / ftp.ee.pdx.edu / pub / users / Harry / compilers / p7 / makefile < prev    next >
Makefile  |  2006-01-09  |  185b  |  9 lines

  1. # Makefile for CS-322 Project 7.
  2. #
  3. # Type "make" to compile "main.c", assemble "scan.s",
  4. # and produce an executable called "main".
  5. #
  6.  
  7. main: main.c scan.s
  8.     gcc -g main.c scan.s -o main
  9.