tinycobol/lockserver/Makefile.0.mingw

10 lines
184 B
Makefile

BASE = lockserver
DIR = .
${BASE}: Makefile ${DIR}/${BASE}.c
gcc -o ${BASE} -O2 -Wall ${DIR}/${BASE}.c ${CFLAGS} ${LIBS} -lwsock32
clean:
@rm -f ${BASE} *.o core
@echo Cleaned...