12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- include ../make.def
- CFLAGS+=
- LDFLAGS+=
- TRASH=*.o t t.* *.[0-9][0-9][0-9] *~ *.log *.obj *.exe *.suo *.ncb
- TOOLS=
- all compile: ${TOOLS}
- library:
- scripts manuals:
- install: compile library
- uninstall:
- clean:
- rm -fr _UpgradeReport_Files *.XML .
- rm -fr */[Dd]ebug */[Rr]elease */*.[0-9][0-9][0-9]
- rm -fr Objects/2003/*.?db Objects/2003/*.tlog
- rm -fr */*.log */*.tlog */*.manifest */*.unsuccessfulbuild */*.cache
- rm -f ${TOOLS} ${TRASH}
- check:
- ignore:
|