1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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: $(TOOLS) library
- uninstall:
- fresh: clean compile
- check:
- clean:
- rm -fr _UpgradeReport_Files *.XML .
- rm -fr */[Dd]ebug */[Rr]elease */*.[0-9][0-9][0-9]
- rm -fr Objects/*/*.?db */*.log */*.tlog */*/*.manifest
- rm -f ${TOOLS} ${TRASH}
- ignore:
|