
CFLAGS =

# Uncomment if you have gcc
# CC = gcc

# NOTE: if you get errors when linking qstat (missing symbols or
# libraries), then switch the LIBS macro being used.

NO_LIBS =
SOLARIS_LIBS = -lsocket -lnsl
WINDOWS_LIBS = wsock32.lib
OS2_LIBS = so32dll.lib tcp32dll.lib

# Irix 5.3, Linux, FreeBSD, many other Unixes
LIBS = $(NO_LIBS)

# Solaris 2
# LIBS = $(SOLARIS_LIBS)

# Windows 95/NT
# LIBS = $(WINDOWS_LIBS)

# OS/2
# LIBS = $(OS2_LIBS)

# The first line is for Unix.  Switch the comment character for Windows.
# (there should be no need to compile on Windows, but in case you care ...)
all: qstat
#all: qstat.exe

qstat: qstat.c
	$(CC) $(CFLAGS) -o qstat qstat.c $(LIBS)

solaris: qstat.c
	$(CC) $(CFLAGS) -o qstat qstat.c $(SOLARIS_LIBS)

sgi freebsd irix linux: qstat.c
	$(CC) $(CFLAGS) -o qstat qstat.c $(NO_LIBS)

windows: qstat.c
	$(CC) /ML /c qstat.c
	link qstat.obj /out:qstat.exe $(WINDOWS_LIBS)

os2: qstat.c
	$(CC) /Q /W0 /C+ qstat.c
	ilink /PM:VIO qstat.obj /out:qstat.exe $(OS2_LIBS)

clean:
	rm -f qstat core qstat.exe qstat.obj

VERSION = 15
WVERSION = 15
CP_FILES = Makefile qstat.txt qstatdoc.html qstat.c qstat.bat CHANGES.txt COMPILE.txt win32 os2

tar: always
	rm -rf tar
	rm -f qstat$(VERSION).tar qstat$(VERSION).tar.Z
	mkdir tar
	-cp -r $(CP_FILES) tar
	cd tar ; tar cvf ../qstat$(VERSION).tar $(CP_FILES)
	compress qstat$(VERSION).tar

zip: always
	rm -rf zip
	rm -f qsta$(WVERSION).zip qstat$(WVERSION).zip
	mkdir zip
	-cp -r $(CP_FILES) zip
	mv zip/qstatdoc.html zip/qstatdoc.htm
	cd zip ; crtocrlf *
	cd zip ; zip -r ../qstat$(WVERSION).zip $(CP_FILES:%.html=%.htm)

always:
