# 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
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

.c.o:
	$(RM) $@
	$(CC) -c $(CFLG) $(INCL) vtx.c -Dintel
all::	vtx
vtx: vtx.o
	$(RM) $@
	$(CC) -o $@ $(CFLG) vtx.o $(LIBS)

