diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,7 +3,7 @@ CFLAGS = -g -Wall -Wpedantic %.so: CFLAGS += -shared -fPIC -%.debug.so: CFLAGS += -shared -fPIC -DDEBUG +%.debug.so: CFLAGS += -DDEBUG %.so :: %.c %.h $(CC) $(CFLAGS) $< -o $@ $(LDFLAGS) $(LDLIBS) @@ -18,4 +18,5 @@ all: libyhy.so libyhy.debug.so yhy_test clean: $(RM) libyhy.so + $(RM) libyhy.debug.so $(RM) yhy_test |