X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=assman;a=blobdiff_plain;f=examples%2Fasscat%2FMakefile;fp=examples%2Fasscat%2FMakefile;h=6a41b753b6b53609a6a03adce48c62410c80d158;hp=0000000000000000000000000000000000000000;hb=782e5db5669270f2b3046aafc2e909ac3e749393;hpb=b8fc7437862ca32cf79108c7715b8e2566211fb1 diff --git a/examples/asscat/Makefile b/examples/asscat/Makefile new file mode 100644 index 0000000..6a41b75 --- /dev/null +++ b/examples/asscat/Makefile @@ -0,0 +1,13 @@ +obj = asscat.o +bin = asscat +root = ../.. + +CFLAGS = -pedantic -Wall -g -I$(root)/src +LDFLAGS = -L$(root) -Wl,-rpath=$(root) -lassman + +$(bin): $(obj) + $(CC) -o $@ $(obj) $(LDFLAGS) + +.PHONY: clean +clean: + rm -f $(obj) $(bin)