-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recovered from old backups. Don't even think it will work. Comments in spanish/catalan.
- Loading branch information
0 parents
commit 7742efb
Showing
8 changed files
with
762 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# MinGW for Linux (cross compilation) | ||
CC=i586-mingw32msvc-gcc | ||
RM=rm -f | ||
|
||
## MinGW for Windows | ||
#CC=gcc | ||
#RM=del | ||
|
||
all: cron.exe recron.exe | ||
|
||
cron.exe: cron.o lexico.o sintactico.o | ||
$(CC) -o cron.exe cron.o lexico.o sintactico.o | ||
|
||
recron.exe: recron.c | ||
$(CC) -o recron.exe recron.c | ||
|
||
lexico.o: lexico.c lexico.h | ||
$(CC) -c lexico.c | ||
|
||
sintactico.o: sintactico.c sintactico.h lexico.h | ||
$(CC) -c sintactico.c | ||
|
||
cron.o: cron.c sintactico.h | ||
$(CC) -c cron.c | ||
|
||
clean: | ||
$(RM) recron.exe cron.exe *.o |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
4 tasklist | ||
6 notepad |
Oops, something went wrong.