X-Git-Url: http://git.efficios.com/?p=deliverable%2Flttng-ivc.git;a=blobdiff_plain;f=lttng_ivc%2Fapps%2Flttng-ctl%2Fevents_ctl%2FMakefile;fp=lttng_ivc%2Fapps%2Flttng-ctl%2Fevents_ctl%2FMakefile;h=0000000000000000000000000000000000000000;hp=2cbe921b910271586330338e1a93520cc5e96558;hb=3736bc8a9f7a2dd4ab3e0e4a6f4d6661bcfc6609;hpb=7a8653b4485695713e009bd5a76cff587e5587b0 diff --git a/lttng_ivc/apps/lttng-ctl/events_ctl/Makefile b/lttng_ivc/apps/lttng-ctl/events_ctl/Makefile deleted file mode 100644 index 2cbe921..0000000 --- a/lttng_ivc/apps/lttng-ctl/events_ctl/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright (C) 2017 Jonathan Rajotte -# -# THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED -# OR IMPLIED. ANY USE IS AT YOUR OWN RISK. -# -# Permission is hereby granted to use or copy this program for any -# purpose, provided the above notices are retained on all copies. -# Permission to modify the code and to distribute modified code is -# granted, provided the above notices are retained, and a notice that -# the code was modified is included with the above copyright notice. - -LIBS = -llttng-ctl -LOCAL_CPPFLAGS += -I. - -all: app - -.PHONY: app - -app: app.o - $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ $(LIBS) - -app.o: app.c - $(CC) $(CPPFLAGS) $(LOCAL_CPPFLAGS) $(LTTNG_CPPFLAGS) $(CFLAGS) -c -o $@ $< - - -