diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -20,7 +20,7 @@ config_C_SOURCES = config.c config_OBJECTS = $(patsubst %.c,%.o,$(config_C_SOURCES)) config_TARGET = config -.PHONY: all clean +.PHONY: all clean cleanconfig all: $(mulklib_TARGET) $(bpttest_TARGET) @@ -32,6 +32,10 @@ clean: $(RM_F) $(config_OBJECTS) $(RM_F) $(config_TARGET) +cleanconfig: + $(RM_F) $(config_OBJECTS) + $(RM_F) $(config_TARGET) + $(mulklib_TARGET): $(mulklib_OBJECTS) $(LIBTOOL) -dynamic $(LDFLAGS) -o $@ $(mulklib_OBJECTS) |