Skip to content

Instantly share code, notes, and snippets.

@robwhess
Created April 19, 2023 18:02
Show Gist options
  • Save robwhess/4b9d250c2c3712bac66875622893e5af to your computer and use it in GitHub Desktop.
Save robwhess/4b9d250c2c3712bac66875622893e5af to your computer and use it in GitHub Desktop.
Fixed Makefile for CS 480 assignment 1
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