home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-07-01 | 396 b | 21 lines |
- # Imakefile written by Ron Record (rr@sco.com) adapted from Makefile
- # supplied with original sources
- #
-
- CC = CC -belf
-
- SRCS = xmemory.C
- OBJS = xmemory.o
-
- INCLUDES = -I/usr/skunk/include/fixes/os5
-
- all: xmemory
-
- xmemory: $(OBJS)
- $(CC) $(CFLAGS) -o xmemory $(OBJS) $(XLIB) $(EXTRA_LIBRARIES) -lC
-
- xmemory.o: xmemory.C
- $(CC) $(CFLAGS) -c xmemory.C
-
- DependTarget()
-