Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Makefile
Package: videoserver-0.6.2.tar.gz [view]
Upload User: psq1974
Upload Date: 2007-01-06
Package Size: 1195k
Code Size: 1k
Category:
mpeg mp3
Development Platform:
C/C++
- #-------------------------------------------------------------------------
- #
- # Makefile
- # Makefile for Video Server project
- #
- # IDENTIFICATION
- # $Header: /home/andrew/CVSROOT/VideoServer/edu/sunysb/csecsl/videoserver/Makefile,v 1.1 1998/01/27 01:34:43 andrew Exp $
- #
- #-------------------------------------------------------------------------
- FIND = find
- JAR = jar
- JAVA = java
- JAVAC = javac
- JAVADOC = javadoc
- RM = rm -f
- LN = ln -sf
- OBJS = VideoServer.class
- Properties.class
- # This defines how to compile a java class
- %.class: %.java
- $(JAVAC) -classpath .:../src:/usr/lib/jdk/lib/classes.zip -d ./.. $<
- .SUFFIXES: .class .java
- .PHONY: all clean doc
- VPATH = ../src
- all: $(OBJS)
- VideoServer.jar: $(OBJS)
- $(JAR) -c0vf $@ $^
- # This rule removes any temporary and compiled files from the source tree.
- clean:
- $(FIND) . -name "*~" -exec $(RM) {} ;
- $(FIND) . -name "*.class" -exec $(RM) {} ;
- $(RM) postgresql.jar
- #######################################################################
- # This helps make workout what classes are from what source files
- #
- # Java is unlike C in that one source file can generate several
- # _Different_ file names
- #
- VideoServer.class: VideoServer.java
- Properties.class: Properties.java