Sponsored Content
Full Discussion: Makefile helps
Homework and Emergencies Homework & Coursework Questions Makefile helps Post 303015910 by Corona688 on Monday 16th of April 2018 11:30:05 AM
Old 04-16-2018
List cppscanner.l as a dependency of lex.yy.c, a la
Code:
lex.yy.c:cppscanner.l

 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

this helps me out big time

ever since i started playing with unix at work i have found all kinds of helpful tools that my companie has added into our /usr/bin/ this is the one that helped the most """"""ldr""""""" #!/bin/sh # # @(#) %filespec: ldr-2 % %date_modified: Wed Sep 6 09:54:07 2000 % # # ... (4 Replies)
Discussion started by: jerzey4life
4 Replies

2. Solaris

How does an Administrator helps Progremmers

hi, How does an Administrator helps Progremmers ? (2 Replies)
Discussion started by: sol8admin
2 Replies

3. UNIX for Advanced & Expert Users

Makefile problem - How to run module load in a Makefile

Hi, I'm trying to run the module load command in a Makefile and i'm getting the following error: make: module: command not found Why is this? Is there any way to run this command in a Makefile? NOTE: command - module load msjava/sunjdk/1.5.0 works fine outside of the Makefile (2 Replies)
Discussion started by: hernandinho
2 Replies

4. Homework & Coursework Questions

Help with Simple Multi-Level Makefile (Extremely New at Makefile)

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Basically, the prompt is make a makefile with various sub makefiles in their respective subdirectories. All code... (1 Reply)
Discussion started by: Tatl
1 Replies

5. UNIX for Advanced & Expert Users

FTP Client helps bash + awk

FTP Client helps bash + awk Good afternoon, Dear I have a script that performs a file sent to another server the process is simple but moving large volume of information is run through crontab every 30 minutes, is that the scritp connected to Windows servers, I have unix (solaris 5.10), the... (6 Replies)
Discussion started by: arnolkat
6 Replies
LEX(1)							      General Commands Manual							    LEX(1)

NAME
lex - generator of lexical analysis programs SYNOPSIS
lex [ -tvfn ] [ file ] ... DESCRIPTION
Lex generates programs to be used in simple lexical analyis of text. The input files (standard input default) contain regular expressions to be searched for, and actions written in C to be executed when expressions are found. A C source program, 'lex.yy.c' is generated, to be compiled thus: cc lex.yy.c -ll This program, when run, copies unrecognized portions of the input to the output, and executes the associated C action for each regular expression that is recognized. The options have the following meanings. -t Place the result on the standard output instead of in file "lex.yy.c". -v Print a one-line summary of statistics of the generated analyzer. -n Opposite of -v; -n is default. -f "Faster" compilation: don't bother to pack the resulting tables; limited to small programs. EXAMPLE
lex lexcommands would draw lex instructions from the file lexcommands, and place the output in lex.yy.c %% [A-Z] putchar(yytext[0]+'a'-'A'); [ ]+$ ; [ ]+ putchar(' '); is an example of a lex program that would be put into a lex command file. This program converts upper case to lower, removes blanks at the end of lines, and replaces multiple blanks by single blanks. SEE ALSO
yacc(1), sed(1) M. E. Lesk and E. Schmidt, LEX - Lexical Analyzer Generator 7th Edition April 14, 1986 LEX(1)
All times are GMT -4. The time now is 06:32 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy