root / branches / refactor_testable / Makefile

Revision 37, 443 bytes (checked in by docwhat, 7 years ago)

This is working....

  • Property svn:eol-style set to native
  • Property svn:keywords set to author date id revision
Line 
1# Super Cheesy Make File
2
3# Configure HERE
4PREFIX = /usr
5ETC    = /etc
6BIN    = $(PREFIX)/usr/bin
7SBIN   = $(PREFIX)/usr/sbin
8PYTHON = /usr/bin/python
9
10INSTALL   = install -c
11UNINSTALL = rm -f
12
13nop:
14    @echo "You should read the document"
15
16#install:
17#   $(INSTALL) gdhostc $(BIN)
18#   $(INSTALL) gdhostd $(SBIN)
19
20#uninstall:
21#   $(UNINSTALL) $(BIN)/gdhostc
22#   $(UNINSTALL) $(SBIN)/gdhostd
23
24test:
25    $(PYTHON) sillyEncrypt.py
26    $(PYTHON) gdhProto.py
27
28# EOF
Note: See TracBrowser for help on using the browser.