Changeset 4746
- Timestamp:
- Aug 10, 2005, 7:37:04 AM (21 years ago)
- Location:
- trunk/Ohana/src/opihi
- Files:
-
- 1 added
- 6 edited
-
cmd.astro/Makefile (modified) (1 diff)
-
cmd.basic/Makefile (modified) (2 diffs)
-
cmd.basic/fprintf.c (added)
-
cmd.basic/init.c (modified) (2 diffs)
-
cmd.data/Makefile (modified) (1 diff)
-
lib.data/Makefile (modified) (2 diffs)
-
lib.shell/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.astro/Makefile
r3525 r4746 119 119 rm -f $(BIN)/* 120 120 rm -f $(LIB)/* 121 122 uninstall: 123 rm -f $(DESTLIB)/libcmdastro.a -
trunk/Ohana/src/opihi/cmd.basic/Makefile
r4686 r4746 47 47 $(SDIR)/shell.$(ARCH).o \ 48 48 $(SDIR)/sprintf.$(ARCH).o \ 49 $(SDIR)/fprintf.$(ARCH).o \ 49 50 $(SDIR)/strlen.$(ARCH).o \ 50 51 $(SDIR)/substr.$(ARCH).o \ … … 109 110 rm -f $(BIN)/* 110 111 rm -f $(LIB)/* 112 113 uninstall: 114 rm -f $(DESTLIB)/libcmdbasic.a -
trunk/Ohana/src/opihi/cmd.basic/init.c
r4714 r4746 28 28 int shell PROTO((int, char **)); 29 29 int sprintf_opihi PROTO((int, char **)); 30 int fprintf_opihi PROTO((int, char **)); 30 31 int strlen_func PROTO((int, char **)); 31 32 int substr_func PROTO((int, char **)); … … 65 66 {"exec", shell, "system call"}, 66 67 {"sprintf", sprintf_opihi, "formatted print to a variable"}, 68 {"fprintf", fprintf_opihi, "formatted print to standard output"}, 67 69 {"strlen", strlen_func, "string length"}, 68 70 {"substr", substr_func, "substring"}, -
trunk/Ohana/src/opihi/cmd.data/Makefile
r4703 r4746 178 178 rm -f $(BIN)/* 179 179 rm -f $(LIB)/* 180 181 uninstall: 182 rm -f $(DESTLIB)/libcmddata.a -
trunk/Ohana/src/opihi/lib.data/Makefile
r4697 r4746 40 40 $(SDIR)/PlotVectors.$(ARCH).o 41 41 42 libdata: $(DESTLIB)/libdata.a42 libdata: $(DESTLIB)/libdata.a 43 43 44 $(LIB)/libdata.$(ARCH).a: $(libdata)44 $(LIB)/libdata.$(ARCH).a: $(libdata) 45 45 46 46 # utilities ################################################# 47 # .SUFFIXES: .$(ARCH).o 48 47 49 $(BIN)/%.$(ARCH): 48 50 @if [ ! -d $(BIN) ]; then mkdir -p $(BIN); fi … … 94 96 rm -f $(BIN)/* 95 97 rm -f $(LIB)/* 98 99 uninstall: 100 rm -f $(DESTLIB)/libdata.a -
trunk/Ohana/src/opihi/lib.shell/Makefile
r4697 r4746 117 117 rm -f $(BIN)/* 118 118 rm -f $(LIB)/* 119 120 uninstall: 121 rm -f $(DESTLIB)/libshell.a
Note:
See TracChangeset
for help on using the changeset viewer.
