Changeset 1025 in Sophya for trunk/SophyaExt/JThreadsC++/Examples/Makefile
- Timestamp:
- May 21, 2000, 4:12:49 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/JThreadsC++/Examples/Makefile
r1022 r1025 1 1 # Makefile for building JTC JThreads/C++ 2 2 # Source code from Object Oriented Concepts www.ooc.com 3 # R. Ansari LAL-IN2P3/CNRS 3 # R. Ansari LAL-IN2P3/CNRS 05/2000 4 4 5 5 CXX := g++ … … 22 22 endif 23 23 24 all : hello clock diner conprod 24 PROGS = hello clock diner conprod 25 26 all : $(PROGS) 25 27 echo 'hello clock diner conprod built' 28 29 clean : 30 rm -f *.o 31 rm -f $(PROGS) 26 32 27 33 hello : hello.o
Note:
See TracChangeset
for help on using the changeset viewer.