All Downloads are FREE. Search and download functionalities are using the official Maven repository.

robotframework-2.7.7.doc.examples.using_c.Makefile Maven / Gradle / Ivy

The newest version!
CC=gcc
SRC=login.c
SO=liblogin.so

$(SO): $(SRC)
	$(CC) -shared -o $(SO) $(SRC)

clean:
	rm -f $(SO)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy