Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adrienbrault/Lex-Sample
XCode 4 lex sample project
https://github.com/adrienbrault/Lex-Sample
Last synced: 2 months ago
JSON representation
XCode 4 lex sample project
- Host: GitHub
- URL: https://github.com/adrienbrault/Lex-Sample
- Owner: adrienbrault
- License: mit
- Created: 2011-05-26T08:21:22.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-05-26T13:52:05.000Z (over 13 years ago)
- Last Synced: 2024-10-14T06:31:01.631Z (3 months ago)
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
- awesome - Lex-Sample - XCode 4 lex sample project (etc)
- awesome - Lex-Sample - XCode 4 lex sample project (etc)
README
If you want to compile a lex programm withtout XCode, here's how to do it:
$ vi flex.l
$ lex -o flex.yy.c flex.l
$ gcc -o flex.bin flex.yy.c
$ ./flex.bin