Skip to content

Instantly share code, notes, and snippets.

@naushad-rahman
Forked from mbeltagy/Makefile
Created September 25, 2018 14:12
Show Gist options
  • Save naushad-rahman/bf4995caac51220e053c42076b47159d to your computer and use it in GitHub Desktop.
Save naushad-rahman/bf4995caac51220e053c42076b47159d to your computer and use it in GitHub Desktop.
For the Julia calling C minimal example
CC=gcc
CFLAGS=-c -Wall -fPIC
SOURCES=calc_mean.c
OBJECTS=$(SOURCES:.c=.o)
.c.o:
$(CC) $(CFLAGS) $< -o $@
lib: $(OBJECTS)
$(CC) -shared -fPIC -o libmean.so $(OBJECTS)
clean:
rm *.o *.so
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment