Revision 9db975ea
Added by Hamish Coleman over 16 years ago
- ID 9db975ea14fcbdb12b8f7564ea3fd03cc91840a8
Makefile | ||
---|---|---|
|
||
all: wconsd
|
||
all: wconsd.exe
|
||
|
||
get:
|
||
pscp 192.168.1.1:s/src/wconsd/* ./
|
||
... | ... | |
pscp ./* 192.168.1.1:s/src/wconsd/
|
||
|
||
|
||
wconsd: wconsd.c
|
||
lcc -o wconsd wconsd.c
|
||
wconsd.exe: wconsd.c
|
||
gcc -o wconsd.exe wconsd.c
|
||
|
Also available in: Unified diff
Update makefile to stop using lcc
It turns out that my previous testing was all invalid as lcc could
not even correctly compile a hello world program.