Skript file: /~heha/vt/viewers/vtx.zip/Makefile

# Forceful remove
RM = rm -f

# You may substitute "cc" by "gcc"
CC = cc

# You may need define an external symbol with -Dmotorola
# if your target system is big-endian
# gcc should auto-detect correct endianness.
CFLG =

# You may need a path to the include files, e.g. "-I /usr/openwin/include"
INCL =

# You may need some other options like "-lsocket" or "-lmalloc"
# If the linker cannot find any library, you should add "-L <LibraryPath>"
LIBS = -lX11

all::	vtx
vtx: vtx.c gifsave.c
	$(RM) $@
	$(CC) -o $@ $^ $(LIBS)
	strip $@
Detected encoding: ASCII (7 bit)2