diff --git a/Makefile b/Makefile index 3426248..7ce9116 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,8 @@ -OS = FreeBSD +# OS=$(uname) make + +### OS = FreeBSD PROG= xmem -VERSION= 1.26 +VERSION= 1.27 FreeBSD_lflag= -lkvm LDFLAGS+= -L/usr/X11R6/lib -L/usr/local/lib/ -lX11 -lXt -lXaw -lXmu LDFLAGS+= $($(OS)_lflag) @@ -14,10 +16,10 @@ OBJECTS += $($(OS)_stub) all: xmem xmem.full: - echo full + echo "full not supported yet" xmem.debug: - echo full + echo "debug not supported yet" xmem: $(OBJECTS) $(CC) -o xmem $(OBJECTS) $(LDFLAGS)