Skip to content

Instantly share code, notes, and snippets.

@Shougo
Created June 5, 2009 07:01
Show Gist options
  • Save Shougo/124117 to your computer and use it in GitHub Desktop.
Save Shougo/124117 to your computer and use it in GitHub Desktop.
# for Mac.
TARGET=autoload/proc.so
SRC=autoload/proc.c
CFLAGS=-W -Wall -Wno-unused -ansi -pedantic -bundle -fPIC
LDFLAGS+=-lutil
all: $(TARGET)
$(TARGET): $(SRC) autoload/vimstack.c
gcc $(CFLAGS) -o $(TARGET) $(SRC) $(LDFLAGS)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment