X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=kitten%2Fuser%2Fhello_world%2FMakefile;fp=kitten%2Fuser%2Fhello_world%2FMakefile;h=4c8b9e6ce5bb7ad4b268020965792247ff8e31c8;hb=66a1a4c7a9edcd7d8bc207aca093d694a6e6b5b2;hp=0000000000000000000000000000000000000000;hpb=f7cf9c19ecb0a589dd45ae0d2c91814bd3c2acc2;p=palacios.git diff --git a/kitten/user/hello_world/Makefile b/kitten/user/hello_world/Makefile new file mode 100644 index 0000000..4c8b9e6 --- /dev/null +++ b/kitten/user/hello_world/Makefile @@ -0,0 +1,11 @@ +TARGET = hello_world + +PROGS-y += $(TARGET) +OBJS-y += hello_world.o + +INCLUDES += -I../liblwk/include -I../../include + +$(TARGET): $(OBJS-y) ../liblwk/liblwk.a + $(call buildprog,$@,$(OBJS-y) ../liblwk/liblwk.a) + +include ../Make.rules