X-Git-Url: http://git.droids-corp.org/?p=libcmdline.git;a=blobdiff_plain;f=build%2Fextension_example%2FMakefile;fp=build%2Fextension_example%2FMakefile;h=0000000000000000000000000000000000000000;hp=68399659f11e3512d01abf543bee19202b5d119b;hb=5519edcd46282b7219668916bf615b4fb8b900c1;hpb=820675afa07d25cbd53d98e92fc174021033daa2 diff --git a/build/extension_example/Makefile b/build/extension_example/Makefile deleted file mode 100755 index 6839965..0000000 --- a/build/extension_example/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -SRC = main.c commands.c parse_obj_list.c - -OBJS = $(SRC:%.c=%.o) - -PROG = extension_example -LDLIB = ../lib/libcmdline.a - -all: $(PROG) - -clean: - rm -f $(PROG) $(OBJS) - -$(PROG): $(OBJS) $(LDLIB) - $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIB) - -%.o: %.c - $(CC) $(CFLAGS) -c $< -o $@