From 9514d70e98fa7f8fa26f991586169b9da09e7ea6 Mon Sep 17 00:00:00 2001 From: FreeArtMan <=> Date: Sat, 7 Nov 2015 18:16:23 +0000 Subject: Inititial commit --- Makefile | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0b097c1 --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +PROJ=libnetbytes +CC=gcc +CFLAGS= +LDFLAGS= + +SOURCE=netbytes +OBJECTS=$(SOURCE:=.o) +SOURCES=$(SOURCE:=.c) + +%.o: %.c + $(CC) $(CFLAGS) -c $< + +make: dynamic static + +dynamic: CFLAGS+=-fPIC +dynamic: clean $(OBJECTS) + $(CC) $(CFLAGS) $(OBJECTS) -shared -o $(PROJ).so + +static: clean $(OBJECTS) + ar rcs $(PROJ).a $(OBJECTS) + + +clean: + rm -rf *.o + rm -rf *.a + rm -rf *.so \ No newline at end of file -- cgit v1.2.3