Created
April 19, 2023 18:02
-
-
Save robwhess/4b9d250c2c3712bac66875622893e5af to your computer and use it in GitHub Desktop.
Fixed Makefile for CS 480 assignment 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all: scan | |
scan: scanner.c | |
gcc scanner.c -o scan | |
scanner.c: scanner.l | |
flex -o scanner.c scanner.l | |
clean: | |
rm -f scan scanner.c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment